/* ============================================
   HEADER · NAV · FOOTER · BREADCRUMBS · PAGE-HERO
   Lapland Lucky — Light Theme (v1.4)
   ============================================ */

.ll-header_a3f9b {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition:
    background var(--ease-base),
    box-shadow var(--ease-base),
    backdrop-filter var(--ease-base);
}

.ll-header_a3f9b::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  transition: all var(--ease-base);
  z-index: -1;
  border-bottom: 1px solid transparent;
}

.ll-header_a3f9b--scrolled::before {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 6px 24px rgba(46, 71, 93, 0.08);
}

.ll-header__inner_a3f9b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* Logo */
.ll-header__logo_a3f9b {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.ll-header__mark_a3f9b {
  width: 42px;
  height: 42px;
  background: var(--grd-warm);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  box-shadow: var(--shadow-gold);
  transition: transform var(--ease-spring);
}

.ll-header__logo_a3f9b:hover .ll-header__mark_a3f9b {
  transform: rotate(-6deg) scale(1.05);
}

.ll-header__brand_a3f9b {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.ll-header__title_a3f9b {
  font-size: 1rem;
  font-weight: var(--fw-extra);
  color: var(--ink-strong);
  letter-spacing: -0.02em;
}

.ll-header__region_a3f9b {
  font-size: 0.625rem;
  font-weight: var(--fw-bold);
  color: var(--brand-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav */
.ll-header__nav_a3f9b {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.ll-header__nav-link_a3f9b {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--ink-mute);
  transition: color var(--ease-fast);
  border-radius: var(--radius-md);
  letter-spacing: 0.01em;
}

.ll-header__nav-link_a3f9b::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--grd-warm);
  transition: width var(--ease-base);
  border-radius: var(--radius-full);
}

.ll-header__nav-link_a3f9b:hover,
.ll-header__nav-link_a3f9b.active {
  color: var(--brand-1-d);
}

.ll-header__nav-link_a3f9b:hover::after,
.ll-header__nav-link_a3f9b.active::after {
  width: calc(100% - 2rem);
}

.ll-header__nav-cta_a3f9b {
  margin-left: var(--sp-md);
}

/* Hamburger */
.ll-header__burger_a3f9b {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-mid);
  background: var(--srf-card);
  box-shadow: var(--shadow-sm);
  transition: all var(--ease-fast);
  cursor: pointer;
}

.ll-header__burger_a3f9b:hover {
  border-color: var(--brand-1);
  background: var(--srf-soft);
}

.ll-header__burger-line_a3f9b {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink-strong);
  border-radius: 2px;
  transition: all var(--ease-base);
  transform-origin: center;
}

.ll-header__burger_a3f9b--open .ll-header__burger-line_a3f9b:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ll-header__burger_a3f9b--open .ll-header__burger-line_a3f9b:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ll-header__burger_a3f9b--open .ll-header__burger-line_a3f9b:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Fullscreen mobile overlay */
.ll-header__mobile-close_a3f9b {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--srf-elevate);
  color: var(--ink-strong);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--ease-fast),
    color var(--ease-fast),
    transform var(--ease-fast);
}

.ll-header__mobile-close_a3f9b:hover {
  background: var(--brand-1);
  color: #fff;
  border-color: transparent;
}

.ll-header__mobile-close_a3f9b:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 2px;
}

.ll-header__mobile_a3f9b {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: linear-gradient(
    165deg,
    rgba(238, 246, 244, 0.98) 0%,
    rgba(212, 235, 229, 0.98) 100%
  );
  backdrop-filter: blur(24px);
  padding: calc(var(--header-h) + 2rem) var(--sp-xl) var(--sp-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition:
    opacity 0.4s ease,
    visibility 0.4s,
    transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.ll-header__mobile_a3f9b--open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

@media (max-width: 768px) {
  .ll-header__mobile_a3f9b {
    backdrop-filter: none;
    background: #eef6f4;
  }
}

.ll-header__mobile-list_a3f9b {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-lg);
}

.ll-header__mobile-link_a3f9b {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: var(--fw-bold);
  /* font-family: var(--font-display); */
  color: var(--ink-strong);
  border-bottom: 1px solid var(--line-soft);
  transition:
    color var(--ease-fast),
    padding-left var(--ease-fast);
}

.ll-header__mobile-link_a3f9b:hover,
.ll-header__mobile-link_a3f9b.active {
  color: var(--brand-1-d);
  background: var(--srf-soft);
  border-color: var(--line-soft);
}

/* ============================================
   FOOTER
   ============================================ */
.ll-footer_e2b7c {
  /* background: linear-gradient(180deg, #f4f1e8 0%, #ede8da 100%); */
  border-top: 1px solid var(--line-soft);
  padding-top: var(--sp-4xl);
  color: var(--ink);
}

.ll-footer__grid-legacy_e2b7c {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid var(--line-soft);
}

@media (min-width: 640px) {
  .ll-footer__grid-legacy_e2b7c {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ll-footer__grid-legacy_e2b7c {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.ll-footer__brand_e2b7c p {
  font-size: var(--fs-sm);
  color: var(--ink-mute);
  line-height: var(--lh-loose);
  margin-top: var(--sp-md);
  max-width: 300px;
}

.ll-footer__socials_e2b7c {
  display: flex;
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
}

.ll-footer__social_e2b7c {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--srf-card);
  border: 1px solid var(--line-mid);
  color: var(--ink-mute);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  transition: all var(--ease-fast);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.ll-footer__social_e2b7c:hover {
  background: var(--brand-1);
  border-color: var(--brand-1);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ll-footer__col-title_e2b7c {
  font-size: var(--fs-sm);
  font-weight: var(--fw-extra);
  color: var(--ink-strong);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-lg);
}

.ll-footer__links_e2b7c {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.ll-footer__link_e2b7c {
  font-size: var(--fs-sm);
  color: var(--ink-mute);
  transition: color var(--ease-fast);
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.ll-footer__link_e2b7c:hover {
  color: var(--brand-1);
}

.ll-footer__contact-item_e2b7c {
  display: flex;
  gap: var(--sp-sm);
  font-size: var(--fs-sm);
  color: var(--ink-mute);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-md);
}

.ll-footer__contact-item_e2b7c svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-2);
}

.ll-footer__bottom_e2b7c {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding-block: var(--sp-xl);
}

.ll-footer__copy_e2b7c {
  font-size: var(--fs-xs);
  color: var(--ink-soft);
}

.ll-footer__legal-links_e2b7c {
  display: flex;
  gap: var(--sp-lg);
}

.ll-footer__legal-links_e2b7c a {
  font-size: var(--fs-xs);
  color: var(--ink-soft);
  transition: color var(--ease-fast);
}

.ll-footer__legal-links_e2b7c a:hover {
  color: var(--brand-1);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.ll-crumb_y8k4m {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  flex-wrap: wrap;
  padding-block: var(--sp-md);
}

.ll-crumb__item_y8k4m {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: var(--fs-xs);
  color: var(--ink-soft);
}

.ll-crumb__item_y8k4m a {
  color: var(--ink-mute);
  transition: color var(--ease-fast);
}

.ll-crumb__item_y8k4m a:hover {
  color: var(--brand-1);
}

.ll-crumb__item--active_y8k4m {
  color: var(--ink-strong);
  font-weight: var(--fw-semi);
}

.ll-crumb__sep_y8k4m {
  color: var(--ink-soft);
  font-size: 0.625rem;
}

/* ============================================
   PAGE HEADER HERO (inner pages)
   ============================================ */
.ll-page-hero_s1t6u {
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background: var(--grd-hero);
  margin-bottom: 40px;
}

.ll-page-hero_s1t6u::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 20% 10%,
      rgba(217, 127, 44, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 90%,
      rgba(45, 90, 135, 0.08) 0%,
      transparent 55%
    );
  pointer-events: none;
}

.ll-page-hero_s1t6u > .ll-wrap_z3a9b {
  position: relative;
  z-index: 1;
}

.ll-page-hero__heading_s1t6u {
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl));
  font-weight: var(--fw-extra);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-lg);
  color: var(--ink-strong);
  letter-spacing: -0.02em;
}

.ll-page-hero__lede_s1t6u {
  font-size: var(--fs-md);
  color: var(--ink-mute);
  line-height: var(--lh-loose);
  max-width: 680px;
  margin-bottom: var(--sp-xl);
}

.ll-page-hero__meta_s1t6u {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--ink-soft);
}

.ll-page-hero__meta-item_s1t6u {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.ll-page-hero__meta-item_s1t6u svg {
  color: var(--brand-2);
}

/* Hamburger mobile breakpoint */
@media (max-width: 900px) {
  .ll-header__nav_a3f9b {
    display: none;
  }
  .ll-header__burger_a3f9b {
    display: flex;
  }
}
