/* La Kombu Ecotienda — public website base + chrome.
   Tokens come from styles.css (loaded first). This file holds the reset,
   base elements and the site chrome (topbar / header / footer / telegram
   banner), translated from ui_kits/website/chrome.jsx to plain CSS.
   Always reference design tokens (var(--…)) — never raw hex. */

/* ---------------------------------------------------------------- reset */
*,
*::before,
*::after { box-sizing: border-box; }

html { text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font: var(--type-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--weight-display-bold);
  color: var(--text-strong);
  margin: 0;
}

p { margin: 0; }

a { color: var(--text-link); text-decoration: none; }
a:hover { color: var(--text-link-hover); }

img { max-width: 100%; }

button { font-family: inherit; }

:focus-visible { outline: 2px solid transparent; box-shadow: var(--shadow-focus); }

/* ------------------------------------------------------------- layout */
.lk-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.lk-main { display: block; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface-olive);
  color: var(--text-on-olive);
  padding: var(--space-2) var(--space-4);
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ------------------------------------------------------------- topbar */
.lk-topbar {
  background: var(--kombu-carbon);
  color: var(--cream);
  font-size: 12.5px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-align: center;
  padding: 7px 16px;
}
.lk-topbar .accent { color: var(--honey); }

/* ------------------------------------------------------------- header */
.lk-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in oklch, var(--cream) 90%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
}
.lk-header__bar {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
}
.lk-header__brand { background: none; border: none; cursor: pointer; display: flex; padding: 0; }
.lk-header__brand img { height: 72px; display: block; margin: 0; padding: 0; }
.lk-header__spacer { flex: 1; }

.lk-nav { display: flex; gap: 22px; align-items: center; }
.lk-nav__link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: 15px;
  padding: 6px 2px;
  color: var(--text-strong);
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
.lk-nav__link:hover { color: var(--olive-600); }
.lk-nav__link.is-active { color: var(--olive-600); border-bottom-color: var(--olive-500); }

.lk-burger { display: none; background: none; border: none; cursor: pointer; color: var(--text-strong); padding: 4px; }

/* mobile menu, toggled via #lk-nav-toggle checkbox */
.lk-nav-toggle { display: none; }
.lk-nav--mobile { display: none; }

/* Button primitives live in components.css (.lk-btn …). */

/* ------------------------------------------------ telegram banner */
.lk-telegram { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.lk-telegram__inner {
  background: var(--olive-600);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.lk-telegram__copy { display: flex; align-items: center; gap: 22px; }
.lk-telegram__icon {
  background: var(--cream);
  color: var(--olive-600);
  width: 56px; height: 56px;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.lk-telegram__eyebrow {
  font-weight: var(--weight-bold);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--honey);
}
.lk-telegram__title { font-size: 26px; color: var(--cream); margin-top: 4px; }
.lk-telegram__text { color: var(--cream); opacity: .85; margin-top: 4px; font-size: 15px; }

/* ------------------------------------------------------------- footer */
.lk-footer { background: var(--kombu-carbon); color: var(--cream); margin-top: var(--space-9); }
.lk-footer__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-6) var(--gutter);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 36px;
}
.lk-footer__brand img { height: 96px; margin-bottom: 10px; }
.lk-footer__brand p { opacity: .8; font-size: 14px; line-height: 1.6; max-width: 280px; margin-bottom: 18px; }
.lk-footer__social { display: flex; gap: 10px; }
.lk-footer__social a {
  width: 38px; height: 38px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245, 244, 239, .25);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
}
.lk-footer h4 { font-size: 16px; color: var(--cream); margin-bottom: 12px; }
.lk-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.lk-footer__col a { color: var(--cream); opacity: .8; font-size: 14px; }
.lk-footer__col a:hover { opacity: 1; color: var(--cream); }
.lk-footer__news p { opacity: .8; font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.lk-footer__news form { display: flex; gap: 8px; }
.lk-footer__news input {
  flex: 1; min-width: 0;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245, 244, 239, .25);
  background: rgba(245, 244, 239, .06);
  color: var(--cream);
  padding: 10px 16px;
  font: var(--type-small);
}
.lk-footer__news input::placeholder { color: rgba(245, 244, 239, .55); }
.lk-footer__legal a { color: var(--cream); }
.lk-footer__legal a:hover { color: var(--honey); }
.lk-footer__bottom {
  border-top: 1px solid rgba(245, 244, 239, .15);
  padding: 16px var(--gutter);
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: .7;
  flex-wrap: wrap;
  gap: 8px;
}

/* language switcher */
.lk-lang { display: flex; gap: 6px; align-items: center; }
.lk-lang a { font-size: 13px; font-weight: var(--weight-semibold); color: var(--text-muted); text-transform: uppercase; }
.lk-lang a.is-active { color: var(--olive-600); }

/* ------------------------------------------------ page hero (stub) */
.lk-hero { padding: var(--section-y) 0; text-align: center; }
.lk-hero h1 { font: var(--type-h1); margin-bottom: var(--space-4); }
.lk-hero p { color: var(--text-muted); font: var(--type-lead); max-width: 60ch; margin: 0 auto; }

/* ------------------------------------------------------- responsive */
@media (max-width: 920px) {
  .lk-footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .lk-header__brand img { height: 52px; }
  .lk-nav, .lk-header .lk-btn { display: none; }
  .lk-burger { display: flex; }
  .lk-nav-toggle:checked ~ .lk-nav--mobile { display: flex; }
  .lk-nav--mobile {
    flex-direction: column;
    border-top: 1px solid var(--border-subtle);
    background: var(--cream);
    padding: 8px var(--gutter) 18px;
  }
  .lk-nav--mobile .lk-nav__link {
    width: 100%;
    font-size: 17px;
    padding: 12px 2px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .lk-nav--mobile .lk-btn { display: inline-flex; width: 100%; margin-top: 14px; }
}

@media (max-width: 600px) {
  .lk-telegram__inner { padding: 28px 24px; }
}

/* =================================================================
   Section primitives + Home (Step 3)
   ================================================================= */

/* eyebrow + section title (used across pages) */
.lk-eyebrow {
  display: inline-block;
  font-weight: var(--weight-bold);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--kombu-orange);
}
.lk-eyebrow--honey { color: var(--honey); }
.lk-eyebrow--tomato { color: var(--tomato-600); }

.lk-section-title {
  font-family: var(--font-display);
  font-weight: var(--weight-display-bold);
  font-size: clamp(1.7rem, 4.2vw, 38px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 8px 0 0;
  color: var(--text-strong);
}
.lk-section-title--light { color: var(--cream); }

.lk-section { margin-top: var(--section-y); }
.lk-mt-5 { margin-top: var(--space-5); }
.lk-mt-6 { margin-top: var(--space-6); }

.lk-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; }
.lk-section-head--center { display: block; text-align: center; }

.lk-prose { color: var(--text-body); font-size: 17px; line-height: var(--leading-relaxed); margin-top: var(--space-5); max-width: 520px; }

/* grid + split helpers */
.lk-grid { display: grid; gap: var(--space-5); }
.lk-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lk-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lk-grid--4 { grid-template-columns: repeat(4, 1fr); }

.lk-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.lk-split__media { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.lk-split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lk-ar-4-3 { aspect-ratio: 4/3; }
.lk-ar-1-1 { aspect-ratio: 1/1; }
.lk-ar-3-4 { aspect-ratio: 3/4; }

/* lucide icon sizing in specific contexts */
.lk-value__icon svg { width: 26px; height: 26px; }
.lk-storemini__line svg { width: 17px; height: 17px; }
.lk-telegram__icon svg { width: 28px; height: 28px; }
.lk-burger svg { width: 28px; height: 28px; }
.lk-footer__social svg { width: 18px; height: 18px; }

/* ----------------------------------------------------- Home hero */
.lk-hero-home { position: relative; background: var(--olive-700); overflow: hidden; }
/* Background slider: stacked photo layers crossfaded by opacity. A shared filter
   harmonises the colour grade so different photos keep the same "touch". */
.lk-hero-home__slider { position: absolute; inset: 0; }
.lk-hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease-in-out;
  filter: saturate(.85) contrast(1.04) brightness(.92) sepia(.10);
}
.lk-hero-slide.is-active { opacity: 1; }
/* Brand tint over the photos (olive multiply) — the second half of the unified look. */
.lk-hero-home__tint {
  position: absolute; inset: 0;
  background: var(--olive-900); opacity: .16; mix-blend-mode: multiply;
}
.lk-hero-home__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30,28,26,.84) 0%, rgba(30,28,26,.48) 58%, rgba(30,28,26,.15) 100%);
}
.lk-hero-home__inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 104px) var(--gutter) clamp(72px, 11vw, 116px);
}
.lk-hero-home__copy { max-width: 580px; }
.lk-hero-home__title {
  font-family: var(--font-display);
  font-weight: var(--weight-display-bold);
  font-size: clamp(2.6rem, 8vw, 66px);
  line-height: 1.0; letter-spacing: -.02em;
  color: var(--cream); margin: 16px 0 0;
}
.lk-hero-home__text {
  color: var(--cream); opacity: .92;
  font-size: clamp(1rem, 2.2vw, 20px); line-height: 1.6;
  max-width: 480px; margin: 22px 0 30px;
}
.lk-hero-home__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* EST. 2010 seal */
.lk-seal {
  position: absolute; right: var(--gutter); bottom: 44px;
  width: 134px; height: 134px; border-radius: var(--radius-pill);
  border: 2px solid var(--honey); color: var(--honey);
  display: grid; place-items: center; text-align: center;
  transform: rotate(-8deg); background: rgba(30,28,26,.32); backdrop-filter: blur(2px);
}
.lk-seal__est { font-size: 11px; letter-spacing: .22em; font-weight: 700; }
.lk-seal__year { font-family: var(--font-display); font-weight: 700; font-size: 36px; line-height: 1; }
.lk-seal__place { font-size: 9.5px; letter-spacing: .18em; font-weight: 700; margin-top: 3px; }

/* value props (overlap hero) */
.lk-values { gap: 18px; transform: translateY(-40px); margin-bottom: -24px; }
.lk-value {
  background: var(--surface-card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 22px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.lk-value__icon { color: var(--olive-600); }
.lk-value__title { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.lk-value__text { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }

/* trust band */
.lk-trustband {
  background: var(--surface-sunken); margin-top: var(--section-y);
  border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
}
.lk-trustband .lk-grid { gap: 0; }
.lk-trust { padding: 26px 20px; text-align: center; }
.lk-trust__title { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--olive-600); }
.lk-trust__sub { font-size: 13.5px; color: var(--text-muted); margin-top: 4px; }

/* category card */
.lk-cat-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--duration-slow) var(--ease-out), box-shadow var(--duration-slow) var(--ease-out);
}
.lk-cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lk-cat-card__media { display: block; height: 190px; overflow: hidden; }
.lk-cat-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--duration-slow) var(--ease-out); }
.lk-cat-card:hover .lk-cat-card__media img { transform: scale(1.05); }
.lk-cat-card__body { display: block; padding: 18px 20px 22px; }
.lk-cat-card__title { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 0 0 6px; color: var(--text-strong); }
.lk-cat-card__desc { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0; }

/* store mini (home preview) */
.lk-storemini { background: var(--surface-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); }
.lk-storemini__media { height: 200px; position: relative; }
.lk-storemini__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lk-storemini__badge { position: absolute; top: 14px; left: 14px; }
.lk-storemini__body { padding: 22px 24px; }
.lk-storemini__name { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin: 6px 0 8px; }
.lk-storemini__line { color: var(--text-muted); font-size: 15px; margin: 0 0 4px; display: flex; gap: 8px; align-items: center; }
.lk-storemini__cta { margin-top: 16px; }

/* ----------------------------------------------- Back-to-top button */
.lk-totop {
  position: fixed;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  width: 46px; height: 46px;
  border: none; border-radius: var(--radius-pill);
  background: var(--olive-500); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-md); z-index: 40;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out),
              background var(--duration-base) var(--ease-out);
}
.lk-totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.lk-totop:hover { background: var(--olive-600); }
.lk-totop:focus-visible { outline: none; box-shadow: var(--shadow-focus); }
.lk-totop svg { width: 22px; height: 22px; }

/* ----------------------------------------------- Interior page hero */
.lk-pagehero { position: relative; background: var(--olive-700); overflow: hidden; }
.lk-pagehero__bg { position: absolute; inset: 0; }
.lk-pagehero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lk-pagehero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30,28,26,.84) 0%, rgba(30,28,26,.5) 70%, rgba(30,28,26,.25) 100%);
}
.lk-pagehero__inner {
  position: relative; max-width: var(--container-max); margin: 0 auto;
  padding: clamp(48px, 8vw, 72px) var(--gutter) clamp(52px, 8vw, 76px);
}
.lk-pagehero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 6vw, 52px); line-height: 1.04; letter-spacing: -.02em;
  color: var(--cream); margin: 12px 0 0;
}
.lk-pagehero__sub { color: var(--cream); opacity: .9; font-size: 18px; line-height: 1.6; max-width: 560px; margin: 16px 0 0; }

/* ----------------------------------------------- Legal / prose pages */
.lk-legal { max-width: 760px; }
.lk-legal h2 {
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg);
  color: var(--text-strong); margin: var(--space-6) 0 var(--space-3);
}
.lk-legal p { color: var(--text-body); line-height: var(--leading-relaxed); margin: 0 0 var(--space-4); }
.lk-legal ul { color: var(--text-body); line-height: var(--leading-relaxed); margin: 0 0 var(--space-4); padding-left: 1.4em; }
.lk-legal li { margin-bottom: var(--space-2); }
.lk-legal a { color: var(--text-link); }
.lk-legal a:hover { color: var(--text-link-hover); }
.lk-legal__updated { color: var(--text-muted); font-size: var(--text-sm); margin-bottom: var(--space-6); }

/* Green hosting badge (The Green Web Foundation) */
.lk-greenweb { margin-top: var(--space-8); }
.lk-greenweb a { display: inline-block; line-height: 0; }
.lk-greenweb img { display: block; width: 200px; max-width: 100%; height: auto; border-radius: var(--radius-sm); }

/* =================================================================
   Interior pages (Step 4)
   ================================================================= */
.lk-section-sm { margin-top: var(--space-8); }
.lk-center { text-align: center; }
.lk-hp { display: none !important; }

/* store detail (Tiendas) — generous separation between the two store blocks */
.lk-store-section { margin-top: var(--space-9); }
.lk-store__tags { display: flex; gap: 10px; align-items: center; margin-bottom: 4px; flex-wrap: wrap; }
.lk-store-info { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.lk-store-info li { display: flex; gap: 10px; color: var(--text-muted); font-size: 15px; align-items: flex-start; }
.lk-store-info svg { width: 18px; height: 18px; color: var(--olive-600); flex: none; margin-top: 2px; }
.lk-store-info--lg li { font-size: 15.5px; }

/* events / workshops — soft olive band to separate it from the store blocks */
.lk-events {
  background: var(--olive-50);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-top: var(--section-y);
  padding: var(--section-y) 0;
}
.lk-events__sub { color: var(--text-muted); font-size: 16px; margin: 12px auto 0; max-width: 520px; }
.lk-event { background: var(--surface-card); border-radius: var(--radius-lg); border: 1px solid var(--border-subtle); padding: 24px 26px; display: flex; flex-direction: column; gap: 12px; }
.lk-event__head { display: flex; align-items: center; justify-content: space-between; }
.lk-event__date { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--olive-600); }
.lk-event__title { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0; }
.lk-event__who { color: var(--text-muted); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* values dark band (Nosotras) */
.lk-values-dark { background: var(--kombu-carbon); margin-top: var(--section-y); padding: var(--section-y) 0; }
.lk-valued { text-align: center; }
.lk-valued__icon { display: inline-flex; width: 60px; height: 60px; border-radius: var(--radius-pill); background: var(--olive-600); color: var(--cream); align-items: center; justify-content: center; margin-bottom: 14px; }
.lk-valued__icon svg { width: 26px; height: 26px; }
.lk-valued__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--cream); margin: 0 0 6px; }
.lk-valued__text { color: var(--cream); opacity: .78; font-size: 14px; line-height: 1.55; margin: 0; }

/* team */
.lk-member { text-align: center; }
.lk-member__photo { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 14px; }
.lk-member__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lk-member__name { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0 0 2px; }
.lk-member__role { color: var(--olive-600); font-weight: 600; font-size: 14px; margin: 0; }
.lk-team-note { text-align: center; color: var(--text-subtle); font-size: 13px; margin-top: 20px; }

/* location maps */
.lk-loc { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--surface-card); border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); }
.lk-loc__map { min-height: 320px; }
.lk-loc__map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 320px; }
.lk-loc__info { padding: 36px 40px; }
.lk-loc__name { font-family: var(--font-display); font-weight: 700; font-size: 30px; margin: 6px 0 18px; }

/* contact */
.lk-split--top { align-items: start; }
.lk-contact-card { background: var(--surface-card); border-radius: var(--radius-xl); border: 1px solid var(--border-subtle); box-shadow: var(--shadow-sm); padding: 32px 36px; }
.lk-form { display: flex; flex-direction: column; gap: 16px; }
.lk-form__row { gap: 16px; }
.lk-textarea { resize: vertical; font-family: var(--font-body); }
.lk-form-success { text-align: center; padding: 40px 0; }
.lk-form-success__icon { color: var(--olive-600); display: inline-flex; }
.lk-form-success__icon svg { width: 48px; height: 48px; }
.lk-form-success__title { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin: 12px 0 6px; }
.lk-contact-side { display: flex; flex-direction: column; gap: 18px; }
.lk-contact-phone { background: var(--surface-card); border-radius: var(--radius-lg); border: 1px solid var(--border-subtle); padding: 22px 24px; }
.lk-contact-phone__name { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0 0 4px; }
.lk-contact-phone__town { color: var(--text-muted); font-size: 14px; margin: 0 0 12px; }
.lk-contact-phone__line { display: flex; gap: 10px; align-items: center; font-size: 15px; margin: 0 0 8px; }
.lk-contact-phone__line svg { width: 17px; height: 17px; color: var(--olive-600); }

/* footer newsletter feedback */
.lk-footer__news-ok { color: var(--honey); font-size: 14px; margin: 0; }
.lk-footer__news-err { color: var(--honey); font-size: 13px; margin: 6px 0 0; }

@media (max-width: 920px) {
  .lk-loc { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------- Home responsive */
@media (max-width: 920px) {
  .lk-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .lk-split { grid-template-columns: 1fr; gap: var(--space-6); }
  .lk-split__media { order: -1; }
}
@media (max-width: 600px) {
  .lk-grid--2, .lk-grid--3 { grid-template-columns: 1fr; }
  .lk-seal { display: none; }
  .lk-values { transform: none; margin-bottom: 0; }
}
