/* The Business Toolkit — literal MooMovers layout clone */

:root {
  --moo-yellow: #ffee00;
  --moo-black: #000;
  --moo-gray: #383737;
  --moo-gray-hover: #1d1e20;
  --moo-text: #f1f1f1;
  --moo-white: #fff;
  --moo-header: 72px;
  --moo-font: "Inter", system-ui, sans-serif;
  --moo-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --moo-logo: "Josefin Sans", "Inter", sans-serif;
  --moo-max: 1224px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--moo-black);
  color: var(--moo-text);
  font-family: var(--moo-font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, video, iframe { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }

.tbt-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--moo-yellow);
  color: #000;
  padding: 0.6rem 1rem;
  z-index: 10000;
}
.tbt-skip:focus { left: 1rem; top: 1rem; }

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* ========== HEADER (MooMovers) ========== */

.moo-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.moo-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  min-height: var(--moo-header);
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.moo-logo {
  display: flex;
  align-items: center;
}

.moo-logo img,
.moo-logo .custom-logo {
  max-height: 40px;
  width: auto;
}

.moo-logo__text {
  font-family: var(--moo-logo);
  font-size: 19px;
  font-weight: 400;
  color: #f1f1f1;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  line-height: 1.15;
}

.moo-nav__list,
.moo-nav__dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
}

.moo-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}

.moo-nav__list > li > a,
.moo-nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.9rem;
  background: none;
  border: 0;
  cursor: pointer;
  color: #f0f0f0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.moo-nav__list > li > a:hover,
.moo-nav__toggle:hover { color: var(--moo-yellow); }

.moo-nav__item--has-children,
.moo-nav__list .menu-item-has-children { position: relative; }

.moo-nav__dropdown,
.moo-nav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #000;
  border: 1px solid rgba(255, 238, 0, 0.25);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.18s ease;
  z-index: 30;
}

.moo-nav__item--has-children:hover .moo-nav__dropdown,
.moo-nav__list .menu-item-has-children:hover > .sub-menu,
.moo-nav__item--has-children.is-open .moo-nav__dropdown,
.moo-nav__list .menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.moo-nav__dropdown a,
.moo-nav__list .sub-menu a {
  display: block;
  padding: 0.75rem 1.1rem;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.moo-nav__dropdown a:hover,
.moo-nav__list .sub-menu a:hover {
  background: var(--moo-yellow);
  color: #000;
}

.moo-header__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.moo-lang {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
}

.moo-lang__item {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #9a9a9a;
  padding: 0.35rem 0.4rem;
}

.moo-lang__item.is-active,
.moo-lang__item:hover {
  color: var(--moo-yellow);
}

.moo-sectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.moo-sector {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem 1rem;
  background: #111;
  border: 1px solid rgba(255, 238, 0, 0.2);
  min-height: 88px;
}

.moo-sector strong {
  font-family: var(--moo-display);
  font-size: 1.5rem;
  color: var(--moo-yellow);
  line-height: 1;
}

.moo-sector span {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #aaa;
}

.moo-sector:hover {
  background: #1a1a1a;
  border-color: var(--moo-yellow);
}

.moo-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #f1f1f1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
}

.moo-cart:hover { color: var(--moo-yellow); }

.tbt-cart__count {
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  background: var(--moo-yellow);
  color: #000;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.tbt-cart__count[hidden] { display: none; }

.moo-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
  padding: 10px 8px;
  cursor: pointer;
}

.moo-burger span {
  display: block;
  height: 2px;
  background: #f1f1f1;
  margin: 6px 0;
}

/* ========== HERO ========== */

.moo-hero {
  position: relative;
  min-height: calc(100vh - var(--moo-header));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 2.5rem;
  overflow: hidden;
  background: #000;
}

.moo-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.moo-hero__video,
.moo-hero__iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  pointer-events: none;
}

.moo-hero__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

.moo-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 35%, rgba(0,0,0,0.92) 100%);
}

.moo-ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.35rem 0 1.25rem;
  margin-bottom: 1.5rem;
}

.moo-ticker__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: moo-marquee 32s linear infinite;
}

.moo-ticker span {
  font-family: var(--moo-display);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  letter-spacing: 0.02em;
  color: var(--moo-yellow);
  line-height: 0.84;
  white-space: nowrap;
}

@keyframes moo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.moo-hero__copy {
  position: relative;
  z-index: 1;
  max-width: var(--moo-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.moo-mega {
  font-family: var(--moo-display);
  font-weight: 400;
  color: var(--moo-yellow);
  font-size: clamp(2.6rem, 7.2vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin: 0 0 0.55rem;
  max-width: 18ch;
  text-wrap: balance;
}

.moo-mega--2 {
  font-size: clamp(2rem, 5.2vw, 3.8rem);
  margin-bottom: 1.75rem;
}

.moo-mega--white { color: #fff; max-width: 22ch; }
.moo-mega--yellow { color: var(--moo-yellow); }
.moo-mega--sm { font-size: clamp(1.8rem, 4vw, 3rem); max-width: 28ch; }
.moo-mega--stack { max-width: 24ch; }

/* Three black pillars */

.moo-pillars {
  position: relative;
  z-index: 2;
  max-width: var(--moo-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.moo-pillar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 1rem 1.1rem;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--moo-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1;
  transition: background 0.15s ease;
}

.moo-pillar:hover {
  background: var(--moo-gray-hover);
}

/* ========== SECTIONS ========== */

.moo-section {
  padding: 72px 0;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.moo-wrap {
  max-width: var(--moo-max);
  margin: 0 auto;
  padding: 0 24px;
}

.moo-wrap--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.moo-wrap--center { text-align: center; max-width: 720px; }

.moo-eyebrow {
  font-family: var(--moo-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--moo-yellow);
  letter-spacing: 0.03em;
  line-height: 0.9;
  margin: 0 0 1.25rem;
}

.moo-lead-white {
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  max-width: 40rem;
  margin: 0 0 1rem;
}

.moo-body-white {
  color: rgba(255, 255, 255, 0.82);
  max-width: 42rem;
  margin: 0 0 1rem;
}

.moo-body-white--pre { white-space: pre-line; }

.moo-mission {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.4rem;
}

.moo-stats,
.moo-steps,
.moo-bullets {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  max-width: 44rem;
}

.moo-stats li,
.moo-steps li,
.moo-bullets li {
  padding: 0.9rem 0 0.9rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  position: relative;
}

.moo-stats li::before,
.moo-steps li::before,
.moo-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 7px;
  height: 7px;
  background: var(--moo-yellow);
}

.moo-callout {
  margin: 2rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 238, 0, 0.25);
  border-bottom: 1px solid rgba(255, 238, 0, 0.25);
  max-width: 42rem;
}

.moo-callout__title {
  font-family: var(--moo-display);
  color: var(--moo-yellow);
  font-size: 2rem;
  margin: 0 0 0.4rem;
  line-height: 1;
}

.moo-callout__text {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.moo-price {
  color: var(--moo-yellow);
  font-size: 1.2rem;
  font-weight: 600;
  max-width: 40rem;
}

.moo-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.moo-offer {
  background: #111;
  border: 1px solid rgba(255, 238, 0, 0.2);
  padding: 2rem 1.5rem;
}

.moo-offer h3 {
  font-family: var(--moo-display);
  color: var(--moo-yellow);
  font-size: 2.6rem;
  margin: 0 0 0.75rem;
  line-height: 0.95;
}

.moo-offer p {
  color: rgba(255, 255, 255, 0.78);
  min-height: 4.5rem;
}

/* Buttons */

.moo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.6rem;
  font-family: var(--moo-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.moo-btn--black {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.moo-btn--black:hover { background: var(--moo-gray-hover); }

.moo-btn--gray {
  background: var(--moo-gray);
  color: #fff;
  border-radius: 28px;
  font-size: 1.5rem;
  padding: 0.9rem 2rem;
}

.moo-btn--gray:hover { background: var(--moo-gray-hover); }

.moo-btn--yellow-text {
  background: transparent;
  color: var(--moo-yellow);
  font-size: 2rem;
}

.moo-btn--yellow-text:hover { color: #fff; }

.moo-link-yellow {
  display: inline-block;
  color: var(--moo-yellow);
  font-family: var(--moo-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}

.moo-link-yellow:hover { color: #fff; }

/* Embeds */

.moo-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}

.moo-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.moo-embed--wide {
  margin-top: 2.5rem;
  max-width: 900px;
}

/* Contact */

.moo-contact-phone {
  font-family: var(--moo-display);
  color: var(--moo-yellow);
  font-size: 2.4rem;
  margin: 0.5rem 0 1rem;
}

.moo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
  margin-top: 1.5rem;
}

.moo-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
}

.moo-form__full,
.moo-form button,
.moo-form__status { grid-column: 1 / -1; }

.moo-form input,
.moo-form textarea {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.85rem 0.9rem;
  color: #fff;
}

.moo-form input:focus,
.moo-form textarea:focus {
  outline: 2px solid var(--moo-yellow);
  border-color: var(--moo-yellow);
}

.moo-form__status {
  min-height: 1.3em;
  color: var(--moo-yellow);
  text-align: center;
}

.moo-form.is-error .moo-form__status { color: #ff8aa0; }

/* Footer */

.moo-footer {
  padding: 3rem 24px 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  background: #000;
}

.moo-footer__social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.moo-footer__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 238, 0, 0.45);
  border-radius: 50%;
  color: var(--moo-yellow);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.moo-footer__icon:hover {
  background: var(--moo-yellow);
  color: #000;
}

.moo-footer__nav-wrap {
  margin-bottom: 1.5rem;
}

.moo-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.moo-footer__nav a:hover {
  color: var(--moo-yellow);
}

.moo-footer__legal h3 {
  font-family: var(--moo-display);
  color: var(--moo-yellow);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.moo-footer__legal p {
  color: #9a9a9a;
  font-size: 12px;
  letter-spacing: 0.06em;
  margin: 0;
}

/* Inner pages keep dark skin */

.tbt-page {
  padding: 3.5rem 0 5rem;
  min-height: 60vh;
}

.tbt-container {
  max-width: var(--moo-max);
  margin: 0 auto;
  padding: 0 24px;
}

.tbt-container--split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
}

.tbt-display {
  font-family: var(--moo-display);
  color: var(--moo-yellow);
  line-height: 0.9;
  margin: 0 0 1rem;
}

.tbt-display--white { color: #fff; }
.tbt-content { max-width: 46rem; color: rgba(255,255,255,0.8); }
.tbt-content a { color: var(--moo-yellow); }
.tbt-card-post {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.tbt-card-post h2 {
  font-family: var(--moo-display);
  font-size: 2rem;
  margin: 0.5rem 0;
}

.search-form { display: flex; gap: 0.5rem; margin: 1.5rem 0; }
.search-form input {
  flex: 1;
  background: #111;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0.8rem;
  color: #fff;
}
.search-form .search-submit,
.search-form button {
  background: var(--moo-yellow);
  color: #000;
  border: 0;
  padding: 0 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

/* Mobile */

@media (max-width: 960px) {
  .moo-header__inner {
    grid-template-columns: 1fr auto;
  }

  .moo-burger { display: block; }

  .moo-nav {
    position: fixed;
    inset: var(--moo-header) 0 auto 0;
    background: #000;
    border-bottom: 1px solid rgba(255, 238, 0, 0.2);
    padding: 0.5rem 0 1rem;
    display: none;
    max-height: calc(100vh - var(--moo-header));
    overflow: auto;
  }

  body.tbt-nav-open .moo-nav { display: block; }

  .moo-nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .moo-nav__dropdown,
  .moo-nav__list .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: 0;
    background: #111;
  }

  .moo-nav__item--has-children.is-open .moo-nav__dropdown,
  .moo-nav__list .menu-item-has-children.is-open > .sub-menu {
    display: block;
  }

  .moo-pillars,
  .moo-offers,
  .moo-wrap--split,
  .moo-form,
  .moo-sectors,
  .tbt-container--split {
    grid-template-columns: 1fr;
  }

  .moo-sectors {
    grid-template-columns: 1fr 1fr;
  }

  .moo-cart span:not(.tbt-cart__count) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .moo-ticker__track { animation: none; }
  html { scroll-behavior: auto; }
}
