/* =============================================
   leo-main.css — Leo by Alber
   Full site styles with Song Myung + emerald palette
   ============================================= */

/* ── Google Fonts: Song Myung ── */
@import url('https://fonts.googleapis.com/css2?family=Song+Myung&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--warm-black);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select { font: inherit; border: none; outline: none; background: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section { padding-block: var(--section-pad); }

/* ── Header ── */
.leo-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  background: rgba(250,248,243,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.leo-header.scrolled {
  border-bottom-color: var(--warm-gray-pale);
  box-shadow: 0 2px 20px rgba(26,24,20,0.06);
}

.header-wrap {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: var(--sp-6);
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

/* Logo */
.leo-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.leo-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.leo-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.leo-logo-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--fw-normal);
  color: var(--emerald);
  letter-spacing: 0.05em;
}
.leo-logo-sub {
  font-size: 8px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* Nav */
.header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 0 var(--sp-5);
  height: var(--header-h);
  line-height: var(--header-h);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: var(--sp-5); right: var(--sp-5);
  height: 1.5px;
  background: var(--emerald);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--warm-black); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link-sale { color: var(--sale-red) !important; }
.nav-link-sale::after { background: var(--sale-red) !important; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(var(--header-h) - 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--off-white);
  border-top: 2px solid var(--emerald);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  padding: var(--sp-3) 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--warm-gray);
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover { color: var(--warm-black); background: var(--beige); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: var(--sp-1); flex-shrink: 0; }
.hdr-btn {
  position: relative;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  color: var(--warm-gray);
  transition: color 0.2s, background 0.2s;
}
.hdr-btn:hover { color: var(--warm-black); background: var(--beige); }
.hdr-btn svg { width: 21px; height: 21px; stroke-width: 1.6; }
.cart-badge {
  position: absolute;
  top: 5px; right: 5px;
  min-width: 15px; height: 15px;
  background: var(--emerald);
  color: white;
  font-size: 9px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.cart-badge:empty { display: none; }

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  transition: background 0.2s;
}
.burger-btn:hover { background: var(--beige); }
.burger-line {
  width: 22px; height: 1.5px;
  background: var(--warm-black);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.burger-btn.open .burger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger-btn.open .burger-line:nth-child(2) { opacity: 0; }
.burger-btn.open .burger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0;
  width: min(340px, 100vw);
  height: calc(100svh - var(--header-h));
  background: var(--off-white);
  z-index: var(--z-overlay);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: var(--sp-6) var(--sp-6) var(--sp-12);
  /* safe area for iPhone home bar */
  padding-bottom: max(var(--sp-12), calc(env(safe-area-inset-bottom) + var(--sp-6)));
}
/* When announce bar is visible */
body.has-announce-bar .mobile-nav { top: calc(var(--header-h) + 40px); }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  border-bottom: 1px solid var(--warm-gray-pale);
  color: var(--warm-black);
}
.mobile-nav-link.sale { color: var(--sale-red); }

/* Overlay */
.page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,24,20,0.45);
  z-index: calc(var(--z-overlay) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.page-overlay.active { opacity: 1; pointer-events: all; }

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,24,20,0.5);
  z-index: var(--z-overlay);
  display: flex;
  align-items: flex-start;
  padding-top: var(--header-h);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-box {
  width: 100%;
  background: var(--off-white);
  padding: var(--sp-6) var(--container-pad);
  box-shadow: var(--shadow-md);
  transform: translateY(-16px);
  transition: transform 0.3s;
}
.search-overlay.open .search-box { transform: translateY(0); }
.search-field {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  border-bottom: 1.5px solid var(--emerald);
  align-items: center;
  gap: var(--sp-3);
}
.search-field input {
  flex: 1;
  padding: var(--sp-4) var(--sp-2);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--warm-black);
  background: transparent;
}
.search-field input::placeholder { color: var(--warm-gray-light); }
.search-field svg { width: 20px; height: 20px; color: var(--warm-gray); flex-shrink: 0; }

/* ── Section headers ── */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.section-title-leo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-normal);
  color: var(--warm-black);
  letter-spacing: 0.02em;
}
.section-link-leo {
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}
.section-link-leo:hover { color: var(--emerald); }

/* ── Buttons (Leo style) ── */
.btn-leo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.8rem var(--sp-8);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-leo-dark {
  background: var(--warm-black);
  color: var(--off-white);
}
.btn-leo-dark:hover { background: var(--warm-gray); transform: translateY(-1px); }
.btn-leo-emerald {
  background: var(--emerald);
  color: var(--off-white);
}
.btn-leo-emerald:hover { background: var(--emerald-light); transform: translateY(-1px); }
.btn-leo-outline {
  background: transparent;
  color: var(--warm-black);
  border: 1.5px solid var(--warm-black);
}
.btn-leo-outline:hover { background: var(--warm-black); color: var(--off-white); }
.btn-leo-sale {
  background: var(--sale-red);
  color: white;
}
.btn-leo-sale:hover { background: var(--sale-red-light); }

/* ── Badges ── */
.leo-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
}
.badge-autumn { background: var(--emerald); color: white; }
.badge-sale   { background: var(--sale-red); color: white; }
.badge-new    { background: var(--warm-black); color: white; }
.badge-limited { background: var(--gold); color: white; }

/* ── Product card ── */
.product-card-leo {
  position: relative;
  cursor: pointer;
}
.product-card-leo:hover .product-img-main { opacity: 0; }
.product-card-leo:hover .product-img-alt  { opacity: 1; }

.product-media {
  position: relative;
  overflow: hidden;
  background: var(--beige);
  aspect-ratio: 3 / 4;
  margin-bottom: var(--sp-4);
}
.product-img-main, .product-img-alt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s var(--ease-out);
}
.product-img-alt  { opacity: 0; }

.product-wish {
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  width: 34px; height: 34px;
  background: rgba(250,248,243,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}
.product-card-leo:hover .product-wish { opacity: 1; }
.product-wish:hover { transform: scale(1.1); }
.product-wish svg { width: 15px; height: 15px; stroke-width: 1.7; color: var(--warm-black); }
.product-wish.loved svg { fill: var(--sale-red); stroke: var(--sale-red); }

.product-badge-pos {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  z-index: 2;
}

/* Quick add */
.product-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(250,248,243,0.95);
  backdrop-filter: blur(4px);
  padding: var(--sp-3) var(--sp-4);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out);
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.product-card-leo:hover .product-quick-add { transform: translateY(0); }

.size-chip-leo {
  flex: 1;
  min-width: 36px;
  height: 34px;
  border: 1px solid var(--warm-gray-pale);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.size-chip-leo:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: white;
}

/* Card info */
.product-info-leo { padding: 0 var(--sp-1); }
.product-label {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: var(--sp-1);
}
.product-name-leo {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--warm-black);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price-leo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.price-current { font-size: var(--text-base); font-weight: var(--fw-semi); color: var(--warm-black); }
.price-old     { font-size: var(--text-sm); color: var(--warm-gray-light); text-decoration: line-through; }
.price-sale    { font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--sale-red); }

/* Color dots */
.product-colors {
  display: flex;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
}
.color-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(26,24,20,0.15);
  cursor: pointer;
  transition: transform 0.15s;
}
.color-dot:hover { transform: scale(1.2); }

/* ── Product grids ── */
.grid-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6) var(--sp-4);
}
@media (max-width: 1200px) { .grid-products { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 860px)  { .grid-products { grid-template-columns: repeat(2,1fr); gap: var(--sp-4) var(--sp-3); } }

/* ── Category grid (Zara asymmetric) ── */
.cat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 400px 400px;
  gap: var(--sp-3);
}
.cat-card {
  position: relative;
  overflow: hidden;
  background: var(--beige);
  cursor: pointer;
}
.cat-card:first-child {
  grid-row: span 2;
}
.cat-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.cat-card:hover .cat-img { transform: scale(1.04); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.6) 0%, rgba(26,24,20,0.0) 55%);
}
.cat-info {
  position: absolute;
  bottom: var(--sp-6); left: var(--sp-6); right: var(--sp-6);
}
.cat-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-normal);
  color: white;
  margin-bottom: var(--sp-2);
  letter-spacing: 0.03em;
}
.cat-info a {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.cat-info a:hover { color: white; }

@media (max-width: 900px) {
  .cat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .cat-card:first-child { grid-row: span 1; }
  .cat-card { min-height: 260px; }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { min-height: 240px; }
}

/* ── Autumn editorial banner ── */
.autumn-editorial {
  position: relative;
  overflow: hidden;
  height: clamp(420px, 55vw, 680px);
  background: var(--warm-black);
}
.autumn-editorial-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: saturate(0.8);
  transition: transform 8s linear;
}
.autumn-editorial:hover .autumn-editorial-img { transform: scale(1.03); }
.autumn-editorial-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--container-pad);
}
.autumn-editorial-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--emerald-soft);
  margin-bottom: var(--sp-4);
  font-family: var(--font-body);
}
.autumn-editorial-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: var(--fw-normal);
  line-height: 1.0;
  color: var(--off-white);
  margin-bottom: var(--sp-6);
  letter-spacing: 0.02em;
}
.autumn-editorial-sub {
  font-size: var(--text-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-8);
  font-family: var(--font-body);
}

/* ── Sale banner (Beige & Khaki) ── */
.sale-banner {
  background: linear-gradient(145deg, #222C1B 0%, #344329 50%, #26321F 100%) !important;
  padding: clamp(3.8rem, 7.5vw, 6.5rem) var(--container-pad) !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(181, 201, 154, 0.25);
  border-bottom: 1px solid rgba(181, 201, 154, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sale-banner::before {
  content: 'ALBER ESTATE 2026' !important;
  position: absolute;
  font-family: var(--font-display, serif);
  font-size: clamp(3.5rem, 11vw, 9.5rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(245, 239, 224, 0.045) !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.sale-badge-big {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--sp-4);
}
.sale-subtitle {
  font-size: var(--text-sm);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-6);
}
.sale-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-3);
}

/* ── Marquee ── */
.marquee-strip {
  background: var(--emerald);
  overflow: hidden;
  padding: var(--sp-3) 0;
}
.marquee-inner {
  display: flex;
  gap: var(--sp-10);
  white-space: nowrap;
  animation: marqueeRun 28s linear infinite;
}
@keyframes marqueeRun {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item-leo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
  font-family: var(--font-body);
}
.marquee-dot-leo { width: 3px; height: 3px; background: rgba(255,255,255,0.4); border-radius: 50%; }

/* ── Features strip ── */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  padding-block: var(--sp-12);
  border-top: 1px solid var(--warm-gray-pale);
  border-bottom: 1px solid var(--warm-gray-pale);
  text-align: center;
}
.feature-item { display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }
.feature-icon { font-size: 1.75rem; }
.feature-title {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-black);
}
.feature-desc { font-size: var(--text-sm); color: var(--warm-gray); line-height: 1.5; }
@media (max-width: 768px) { .features-strip { grid-template-columns: repeat(2,1fr); } }

/* ── Footer ── */
.leo-footer {
  background: var(--warm-black);
  color: white;
  padding-top: var(--sp-16);
}
.footer-newsletter {
  text-align: center;
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  max-width: 520px;
  margin: 0 auto;
}
.footer-newsletter-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-normal);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.02em;
}
.footer-newsletter-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-6);
}
.footer-nl-form {
  display: flex;
  gap: var(--sp-3);
}
.footer-nl-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  padding: var(--sp-4) var(--sp-5);
  color: white;
  font-size: var(--text-sm);
  transition: border-color 0.2s;
}
.footer-nl-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-nl-input:focus { border-color: var(--emerald-soft); }
.footer-nl-btn {
  background: var(--emerald);
  color: white;
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.footer-nl-btn:hover { background: var(--emerald-light); }

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-block: var(--sp-16);
}
.footer-brand-col {}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--emerald-soft);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.05em;
}
.footer-brand-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 270px;
  margin-bottom: var(--sp-6);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-3);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--emerald-soft); }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact-item a:hover { color: white; }
.social-row { display: flex; gap: var(--sp-3); margin-top: var(--sp-6); }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--emerald); color: white; }
.social-btn svg { width: 17px; height: 17px; }
.footer-col-title {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-bottom-bar p { font-size: var(--text-xs); color: rgba(255,255,255,0.3); }
.footer-legal-links { display: flex; gap: var(--sp-5); }
.footer-legal-links a { font-size: var(--text-xs); color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 1024px) { .footer-main-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); } }
@media (max-width: 600px)  {
  .footer-main-grid { grid-template-columns: 1fr; }
  .footer-nl-form { flex-direction: column; }
  .footer-bottom-bar { flex-direction: column; text-align: center; }
}

/* ── Toast ── */
.leo-toast {
  position: fixed;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--warm-black);
  color: var(--off-white);
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  z-index: var(--z-toast);
  transition: transform 0.3s var(--ease-out);
  border-left: 3px solid var(--emerald);
  white-space: nowrap;
}
.leo-toast.show { transform: translateX(-50%) translateY(0); }

/* ── Back to top ── */
.back-top {
  position: fixed;
  bottom: var(--sp-8); right: var(--sp-8);
  width: 44px; height: 44px;
  background: var(--emerald);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: var(--z-header);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.back-top.visible { opacity: 1; transform: none; pointer-events: all; }
.back-top:hover { background: var(--emerald-light); }
.back-top svg { width: 18px; height: 18px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .burger-btn { display: flex; }
}
