.site-header.littler-hf-header {
  background: var(--lhf-header-bg);
  border-bottom: 1px solid color-mix(in srgb, var(--lhf-header-text) 12%, transparent);
  box-shadow: 0 16px 40px rgba(3, 23, 20, 0.08);
  color: var(--lhf-header-text);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 0.2s ease, background 0.2s ease;
  z-index: 1000;
}

.site-header.littler-hf-header--static {
  position: fixed;
  top: 0;
}

body.admin-bar .site-header.littler-hf-header,
body.admin-bar .site-header.littler-hf-header--static {
  top: 32px;
}

.site-header.littler-hf-header--glass {
  backdrop-filter: blur(18px);
}

.littler-hf-header .site-header__inner {
  min-height: var(--lhf-header-height);
}

.littler-hf-branding,
.littler-hf-logo {
  align-items: center;
  display: inline-flex;
  min-width: 0;
}

.littler-hf-logo {
  text-decoration: none;
}

.littler-hf-logo img {
  display: block;
  height: auto;
  max-height: calc(var(--lhf-header-height) - 20px);
  object-fit: contain;
}

.littler-hf-logo__desktop {
  display: block;
  max-width: var(--lhf-logo-desktop);
  width: var(--lhf-logo-desktop);
}

.littler-hf-logo__mobile {
  display: none !important;
  max-width: var(--lhf-logo-mobile);
  width: var(--lhf-logo-mobile);
}

.littler-hf-logo__text {
  color: var(--lhf-header-text);
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
}

.littler-hf-header .main-navigation a,
.littler-hf-actions a {
  color: var(--lhf-header-text);
}

.littler-hf-header .main-navigation a {
  font-size: var(--lhf-menu-font-size, 15px);
}

.littler-hf-header .main-navigation a:hover,
.littler-hf-header .main-navigation a:focus,
.littler-hf-actions a:hover,
.littler-hf-actions a:focus {
  color: var(--lhf-header-accent);
}

.littler-hf-header .menu-toggle {
  border-color: color-mix(in srgb, var(--lhf-header-text) 18%, transparent);
  border-radius: 12px;
}

.littler-hf-header .menu-toggle span:not(.screen-reader-text) {
  background: var(--lhf-header-text);
}

.littler-hf-actions {
  align-items: center;
  display: flex;
  gap: 0.7rem;
}

.littler-hf-actions a {
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.littler-hf-actions .littler-hf-cta {
  align-items: center;
  background: var(--lhf-cta-bg, transparent);
  border: 1px solid var(--lhf-cta-border, var(--lhf-header-accent));
  border-radius: 100px;
  color: var(--lhf-cta-text, var(--lhf-header-text));
  display: inline-flex;
  gap: 0.7rem;
  justify-content: center;
  min-height: 42px;
  padding: 0.75rem 1.15rem 0.75rem 0.65rem;
}

.littler-hf-actions .littler-hf-cta::before {
  background: var(--lhf-cta-dot, var(--lhf-header-accent));
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 6l6 6-6 6'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0 0;
  border-radius: 999px;
  content: "";
  flex: 0 0 auto;
  height: 20px;
  transition: width 0.22s ease, height 0.22s ease, background-size 0.22s ease;
  width: 20px;
}

.littler-hf-actions .littler-hf-cta:hover,
.littler-hf-actions .littler-hf-cta:focus {
  background: var(--lhf-cta-hover-bg, var(--lhf-header-accent));
  border-color: var(--lhf-cta-hover-border, var(--lhf-header-accent));
  color: var(--lhf-cta-hover-text, #fff);
}

.littler-hf-actions .littler-hf-cta:hover::before,
.littler-hf-actions .littler-hf-cta:focus::before {
  background-color: var(--lhf-cta-hover-dot, rgba(255, 255, 255, 0.22));
  background-size: 15px 15px;
  height: 28px;
  width: 28px;
}

.littler-hf-header-socials,
.littler-hf-footer__socials {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.littler-hf-footer__socials {
  margin-top: 1.25rem;
}

.littler-hf-header-socials a,
.littler-hf-footer__socials a {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  line-height: 1;
  min-height: 0;
  padding: 0;
  text-decoration: none;
  width: 30px;
}

.littler-hf-header-socials a {
  color: color-mix(in srgb, var(--lhf-header-text) 82%, transparent);
}

.littler-hf-header-socials a:hover,
.littler-hf-header-socials a:focus {
  background: var(--lhf-header-accent);
  border-color: var(--lhf-header-accent);
  color: #fff;
}

.littler-hf-header-socials svg,
.littler-hf-footer__socials svg {
  display: block;
  fill: currentColor;
  height: 15px;
  width: 15px;
}

.littler-hf-header-socials span,
.littler-hf-footer__socials span {
  font-size: 0.72rem;
  font-weight: 900;
}

.site-footer.littler-hf-footer {
  background: var(--lhf-footer-bg);
  color: var(--lhf-footer-text);
  overflow: hidden;
  padding: clamp(3rem, 6vw, 4.8rem) 0 1.7rem;
  position: relative;
}

.site-footer.littler-hf-footer::before {
  background:
    radial-gradient(circle at 15% 15%, color-mix(in srgb, var(--lhf-footer-accent) 18%, transparent), transparent 20rem),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.08), transparent 24rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.littler-hf-footer--minimal {
  border-top: 1px solid rgba(7, 29, 26, 0.12);
  color: var(--le-ink);
}

.littler-hf-footer__inner,
.littler-hf-footer__newsletter-row,
.littler-hf-footer__bottom {
  position: relative;
  z-index: 1;
}

.littler-hf-footer__newsletter-row {
  margin-bottom: clamp(2.2rem, 4vw, 3.6rem);
}

.littler-hf-footer__inner.site-footer__inner {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(240px, 1.15fr) repeat(3, minmax(130px, 0.72fr));
  justify-content: center;
  max-width: 980px;
}

.littler-hf-footer__brand img {
  display: block;
  max-height: 54px;
  max-width: 190px;
  object-fit: contain;
}

.littler-hf-footer__site {
  color: inherit;
  display: block;
  font-size: 1.45rem;
  font-weight: 950;
  margin-bottom: 1rem;
}

.littler-hf-footer__brand p,
.littler-hf-footer__contact p {
  color: color-mix(in srgb, var(--lhf-footer-text) 82%, transparent);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 1rem 0 0;
  max-width: 280px;
}

.littler-hf-footer__col {
  display: grid;
  gap: 0.55rem;
}

.littler-hf-footer__newsletter {
  margin-inline: auto;
  max-width: 980px;
  min-width: 0;
}

.littler-hf-footer__newsletter .littler-newsletter-block {
  align-items: center;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--lhf-footer-text) 10%, transparent), color-mix(in srgb, var(--lhf-footer-accent) 11%, transparent));
  border: 1px solid color-mix(in srgb, var(--lhf-footer-text) 16%, transparent);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
  display: grid;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.littler-hf-footer__newsletter .littler-newsletter-block__copy strong {
  color: var(--lhf-footer-text);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
  max-width: 420px;
}

.littler-hf-footer__newsletter .littler-newsletter-block__copy p {
  max-width: 460px;
}

.littler-hf-footer__newsletter .littler-newsletter-form {
  gap: 0.72rem;
}

.littler-hf-footer__newsletter .littler-newsletter-form__row {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  display: grid;
  gap: 0.55rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 0.32rem;
}

.littler-hf-footer__newsletter .littler-newsletter-form input[type="email"] {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #062620;
  min-height: 48px;
}

.littler-hf-footer__newsletter .littler-newsletter-form__consent {
  color: color-mix(in srgb, var(--lhf-footer-text) 76%, transparent);
  font-size: 0.82rem;
  max-width: 620px;
}

.littler-hf-footer__newsletter .littler-newsletter-form button {
  background: #00263a;
  border-color: #00263a;
  color: #6abf4b;
  min-height: 48px;
  padding-inline: 1.4rem;
}

.littler-hf-footer__newsletter .littler-newsletter-form button:hover,
.littler-hf-footer__newsletter .littler-newsletter-form button:focus-visible {
  background: #00263a;
  border-color: #00263a;
  color: #009ddc;
}

.littler-hf-footer__newsletter .littler-newsletter-form__message {
  background: rgba(106, 191, 75, 0.16);
  border: 1px solid rgba(106, 191, 75, 0.36);
  border-radius: 14px;
  color: var(--lhf-footer-text);
  font-weight: 800;
  margin: 0;
  padding: 0.72rem 0.9rem;
}

.littler-hf-footer__newsletter .littler-newsletter-form__message--error {
  background: rgba(214, 54, 56, 0.16);
  border-color: rgba(214, 54, 56, 0.42);
}

.littler-hf-footer__newsletter .littler-newsletter-form button[disabled] {
  cursor: progress;
  opacity: 0.78;
}

.littler-hf-footer__col strong {
  color: var(--lhf-footer-text);
  display: block;
  font-size: 0.94rem;
  margin-bottom: 0.3rem;
}

.littler-hf-footer a {
  color: color-mix(in srgb, var(--lhf-footer-text) 86%, transparent);
  font-size: 0.9rem;
  text-decoration-color: transparent;
  text-underline-offset: 0.18em;
}

.littler-hf-footer a:hover,
.littler-hf-footer a:focus {
  color: #009ddc;
  text-decoration-color: currentColor;
}

.littler-hf-footer__bottom > span a:hover,
.littler-hf-footer__bottom > span a:focus,
.littler-hf-footer__legal a:hover,
.littler-hf-footer__legal a:focus {
  color: #6abf4b;
}

.littler-hf-footer__socials a {
  border-color: color-mix(in srgb, var(--lhf-footer-text) 28%, transparent);
  color: color-mix(in srgb, var(--lhf-footer-text) 86%, transparent);
  height: 32px;
  width: 32px;
}

.littler-hf-footer__socials a:hover,
.littler-hf-footer__socials a:focus {
  background: #009ddc;
  border-color: #009ddc;
  color: #ffffff;
}

.littler-hf-footer__bottom {
  align-items: center;
  border-top: 1px solid color-mix(in srgb, var(--lhf-footer-text) 18%, transparent);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding-top: 1.35rem;
}

.littler-hf-footer__bottom span,
.littler-hf-footer__legal a {
  color: color-mix(in srgb, var(--lhf-footer-text) 78%, transparent);
  font-size: 0.82rem;
}

.littler-hf-footer__bottom > span {
  min-width: 0;
  white-space: nowrap;
}

.littler-hf-footer__bottom > span a {
  display: inline;
  font-size: inherit;
}

.littler-hf-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .littler-hf-actions .littler-hf-header-socials a {
    display: inline-flex;
  }

  .littler-hf-footer__inner.site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.admin-bar .site-header.littler-hf-header,
  body.admin-bar .site-header.littler-hf-header--static {
    top: 0;
  }

  .littler-hf-header .site-header__inner {
    min-height: var(--lhf-mobile-height);
  }

  .littler-hf-logo__desktop:not(:only-child) {
    display: none !important;
  }

  .littler-hf-logo__mobile {
    display: block !important;
    max-height: calc(var(--lhf-mobile-height) - 18px);
  }

  .littler-hf-header .main-navigation {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--lhf-header-bg, #fff) 96%, #fff), #fff);
    border-top: 1px solid color-mix(in srgb, var(--lhf-header-text) 10%, transparent);
    color: var(--lhf-header-text);
  }

  .littler-hf-actions {
    display: none;
  }

  .littler-hf-footer__newsletter .littler-newsletter-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .littler-hf-footer__newsletter .littler-newsletter-form__row {
    border-radius: 18px;
    grid-template-columns: 1fr;
  }

  .littler-hf-footer__newsletter .littler-newsletter-form input[type="email"],
  .littler-hf-footer__newsletter .littler-newsletter-form button {
    width: 100%;
  }

  .littler-hf-footer__inner.site-footer__inner {
    grid-template-columns: 1fr;
  }

  .littler-hf-footer__bottom {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .littler-hf-footer__bottom > span {
    white-space: normal;
  }

  .littler-hf-footer__legal {
    justify-content: flex-start;
  }
}
