:root {
  --orange: #f65a00;
  --orange-hover: #df4f00;
  --mj-orange: #f65a00;
  --mj-orange-deep: #df4f00;
  --ink: #111722;
  --mj-text: #111722;
  --muted: #5e6673;
  --mj-muted: #5e6673;
  --surface: #ffffff;
  --page-max: 1540px;
  --header-height: 88px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --footer-bg: #000000;
  --footer-bg-deep: #000000;
}

html {
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #ffffff;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 5000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: #000;
  background: #fff;
  border: 2px solid var(--orange);
  transform: translateY(-160%);
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1200;
  top: 0;
  color: #ffffff;
  background: #07090c;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  background: rgba(5,7,10,.97);
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header__bar {
  display: grid;
  grid-template-columns: minmax(230px, 325px) minmax(0, 1fr) auto;
  align-items: center;
  width: min(100%, var(--page-max));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 28px;
  gap: 30px;
}

.site-header__logo {
  display: inline-flex;
  width: min(100%, 286px);
  align-items: center;
  line-height: 0;
}

.site-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.15vw, 36px);
}

.site-nav a {
  position: relative;
  padding: 34px 0 31px;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: #ffffff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-icon,
.menu-toggle {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: #ffffff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.header-icon:hover,
.header-icon:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(246,90,0,.16);
  border-color: rgba(246,90,0,.8);
  outline: none;
  transform: translateY(-1px);
}

.header-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cart__count {
  position: absolute;
  top: -5px;
  right: -3px;
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  padding: 0 5px;
  color: #ffffff;
  background: var(--orange);
  border: 2px solid #07090c;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
}

.header-quote {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  padding: 0 19px;
  color: #ffffff;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.header-quote:hover,
.header-quote:focus-visible {
  color: #ffffff;
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  outline: none;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  align-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-search {
  border-top: 1px solid rgba(255,255,255,.08);
  background: #0c1015;
}

.header-search[hidden] {
  display: none;
}

.header-search__form {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  width: min(100% - 48px, 920px);
  min-height: 74px;
  margin: 0 auto;
  gap: 14px;
}

.header-search__form > svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #b8bdc6;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.header-search__form input[type="search"] {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  color: #ffffff;
  background: #151a21;
  border: 1px solid #2d333c;
  border-radius: 4px;
  outline: none;
}

.header-search__form input[type="search"]::placeholder {
  color: #8f96a1;
}

.header-search__form input[type="search"]:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(246,90,0,.14);
}

.header-search__form button {
  height: 46px;
  padding: 0 23px;
  color: #ffffff;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 750;
}

/* Hero */
.hero {
  position: relative;
  width: min(calc(100% - 48px), 1840px);
  height: 610px;
  margin: 18px auto 0;
  overflow: hidden;
  color: #ffffff;
  background: #11151a;
  box-shadow: 0 18px 42px rgba(15,23,42,.15);
}

.hero__slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease, visibility .55s ease;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transform: scale(1.01);
  transition: transform 7s linear;
}

.hero-slide.is-active > img {
  transform: scale(1.065);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,7,10,.94) 0%, rgba(4,7,10,.77) 36%, rgba(4,7,10,.26) 68%, rgba(4,7,10,.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,.06) 50%, rgba(0,0,0,.58) 100%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, var(--page-max));
  height: 100%;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 22px 106px 92px;
}

.hero-slide__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: #ff7b2e;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-slide__eyebrow::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: var(--orange);
}

.hero-slide h1,
.hero-slide h2 {
  max-width: 870px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(54px, 5vw, 82px);
  font-weight: 850;
  line-height: .98;
  letter-spacing: -.055em;
  text-shadow: 0 5px 22px rgba(0,0,0,.28);
}

.hero-slide__copy {
  max-width: 700px;
  margin: 23px 0 30px;
  color: #e5e7eb;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button--orange {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
}

.button--orange:hover,
.button--orange:focus-visible {
  color: #ffffff;
  background: var(--orange-hover);
  border-color: var(--orange-hover);
}

.button--light {
  color: #ffffff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.58);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.button--light:hover,
.button--light:focus-visible {
  color: #101317;
  background: #ffffff;
  border-color: #ffffff;
}

.hero-control {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: #ffffff;
  background: rgba(3,6,9,.35);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .18s ease, border-color .18s ease;
}

.hero-control:hover,
.hero-control:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  outline: none;
}

.hero-control svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-control--prev { left: 26px; }
.hero-control--next { right: 26px; }

.hero__footer {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  background: rgba(4,7,10,.72);
  border-top: 1px solid rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
}

.hero__dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero__dots button {
  width: 26px;
  height: 4px;
  padding: 0;
  background: rgba(255,255,255,.38);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.hero__dots button.is-active {
  width: 52px;
  background: var(--orange);
}

.hero__highlights {
  display: flex;
  align-items: center;
  gap: 0;
  color: #e6e8ec;
  font-size: 14px;
  font-weight: 600;
}

.hero__highlights span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 22px;
  border-left: 1px solid rgba(255,255,255,.23);
}

.hero__highlights span:first-child {
  border-left: 0;
}

.hero__highlights strong {
  margin-right: 6px;
  color: #ffffff;
  font-size: 20px;
}

/* Preserve the completed sections while making their spacing consistent in the full site. */
.categories-section,
.featured-products,
.project-stage,
.ordering-section,
.why-section {
  scroll-margin-top: var(--header-height);
}

.categories-section {
  border-bottom: 1px solid #eff1f3;
}

.featured-products {
  padding-top: 58px;
  padding-bottom: 72px;
}

.project-stage {
  border-top: 1px solid #eef0f2;
  border-bottom: 1px solid #eef0f2;
}

.project-card,
.benefit-card,
.product-card {
  background-color: #ffffff;
}

/* Footer: latest approved content, pure black background and balanced website height. */
.mj-footer {
  background: #000000 !important;
  border-top: 1px solid rgba(255,255,255,.05);
}

.mj-footer::after {
  display: none !important;
}

.mj-footer__inner {
  max-width: 1800px;
  padding: 58px 48px 0 !important;
}

.mj-footer__grid {
  grid-template-columns: 1.05fr .92fr .92fr 1.02fr !important;
  gap: 56px !important;
}

.mj-footer__column--divider::after {
  top: 55px !important;
  right: -28px !important;
  height: calc(100% - 10px) !important;
}

.mj-footer__logo {
  width: min(100%, 320px) !important;
}

.mj-footer__description {
  margin: 28px 0 30px !important;
  color: #d1d3d7 !important;
  font-size: 17px !important;
  line-height: 1.8 !important;
}

.mj-footer__heading {
  margin-bottom: 28px !important;
  font-size: 18px !important;
}

.mj-footer__links {
  gap: 20px !important;
}

.mj-footer__links a,
.mj-footer__contact-item {
  color: #d1d3d7 !important;
  font-size: 17px !important;
  line-height: 1.48 !important;
}

.mj-footer__socials {
  gap: 20px !important;
}

.mj-footer__social {
  width: 56px !important;
  height: 56px !important;
}

.mj-footer__rule {
  margin-top: 44px !important;
}

.mj-footer__bottom {
  display: flex !important;
  min-height: 104px !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 30px !important;
  padding: 25px 0 24px !important;
}

.mj-footer__copyright,
.mj-footer__powered {
  margin: 0;
  color: #c8c9cc;
  font-size: 16px;
  line-height: 1.45;
}

.mj-footer__powered {
  text-align: right;
}

.mj-footer__powered a {
  color: #ffffff;
  font-weight: 700;
  transition: color .18s ease;
}

.mj-footer__powered a:hover,
.mj-footer__powered a:focus-visible {
  color: var(--orange);
}

@media (max-width: 1320px) {
  .site-header__bar {
    grid-template-columns: minmax(220px, 270px) minmax(0, 1fr) auto;
    gap: 22px;
    padding-inline: 24px;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .header-quote {
    padding-inline: 15px;
  }

  .hero-slide__content {
    padding-left: 92px;
    padding-right: 92px;
  }

  .mj-footer__grid {
    gap: 42px !important;
  }

  .mj-footer__column--divider::after {
    right: -21px !important;
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 78px;
  }

  .site-header__bar {
    grid-template-columns: minmax(210px, 260px) 1fr;
    min-height: var(--header-height);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 24px;
    overflow-y: auto;
    background: #080b0f;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 30px rgba(0,0,0,.28);
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 17px 5px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 16px;
  }

  .site-nav a::after {
    right: auto;
    bottom: -1px;
    width: 44px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .site-header__actions {
    justify-self: end;
  }

  .hero {
    width: calc(100% - 36px);
    height: 570px;
    margin-top: 14px;
  }

  .hero-slide__content {
    padding: 18px 78px 88px;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: clamp(50px, 7vw, 72px);
  }

  .hero__highlights span {
    padding-inline: 14px;
  }

  .mj-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 64px !important;
    row-gap: 52px !important;
  }

  .mj-footer__column--divider::after {
    display: none !important;
  }

  .mj-footer__column:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -32px;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,.18);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .site-header__bar {
    grid-template-columns: minmax(160px, 1fr) auto;
    min-height: var(--header-height);
    padding-inline: 16px;
    gap: 12px;
  }

  .site-header__logo {
    width: min(100%, 220px);
  }

  .site-header__actions {
    gap: 7px;
  }

  .header-icon,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .header-quote {
    display: none;
  }

  .header-search__form {
    grid-template-columns: 22px minmax(0, 1fr);
    width: calc(100% - 30px);
    padding: 12px 0 14px;
    gap: 10px;
  }

  .header-search__form button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero {
    width: 100%;
    height: 570px;
    margin-top: 0;
    box-shadow: none;
  }

  .hero-slide > img {
    object-position: 60% center;
  }

  .hero-slide__overlay {
    background:
      linear-gradient(90deg, rgba(4,7,10,.91), rgba(4,7,10,.65) 65%, rgba(4,7,10,.42)),
      linear-gradient(180deg, rgba(0,0,0,.08) 40%, rgba(0,0,0,.75) 100%);
  }

  .hero-slide__content {
    justify-content: flex-end;
    padding: 40px 23px 112px;
  }

  .hero-slide__eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: .12em;
  }

  .hero-slide__eyebrow::before {
    width: 28px;
    height: 2px;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: clamp(41px, 11vw, 58px);
    line-height: 1;
  }

  .hero-slide__copy {
    margin: 17px 0 23px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-slide__actions {
    gap: 9px;
  }

  .button {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .hero-control {
    top: 43%;
    width: 42px;
    height: 42px;
  }

  .hero-control--prev { left: 12px; }
  .hero-control--next { right: 12px; }

  .hero__footer {
    min-height: 68px;
    padding-inline: 22px;
  }

  .hero__highlights {
    display: none;
  }

  .hero__dots {
    margin: 0 auto;
  }

  .featured-products {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .mj-footer__inner {
    padding: 44px 20px 0 !important;
  }

  .mj-footer__grid {
    grid-template-columns: 1fr !important;
    gap: 38px !important;
  }

  .mj-footer__column:nth-child(odd)::after {
    display: none !important;
  }

  .mj-footer__logo {
    width: min(100%, 292px) !important;
  }

  .mj-footer__description {
    max-width: 340px;
    margin: 23px 0 24px !important;
    font-size: 16px !important;
    line-height: 1.72 !important;
    white-space: nowrap;
  }

  .mj-footer__description br {
    display: block !important;
  }

  .mj-footer__heading {
    font-size: 18px !important;
  }

  .mj-footer__links a,
  .mj-footer__contact-item {
    font-size: 16px !important;
  }

  .mj-footer__bottom {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 13px !important;
    min-height: 0 !important;
    padding: 24px 0 32px !important;
  }

  .mj-footer__powered {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .site-header__logo {
    width: min(100%, 188px);
  }

  .header-search-toggle {
    display: inline-grid;
  }

  .hero {
    height: 550px;
  }

  .hero-slide__content {
    padding-inline: 18px;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: 39px;
  }

  .hero-slide__copy {
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  .mj-footer__description {
    font-size: 14.5px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide > img,
  .site-header,
  .menu-toggle span {
    transition: none !important;
  }
}

/* Keep the hero media and copy in the same slide layer. */
.hero-slide > img {
  position: absolute;
  inset: 0;
}

.hero-slide__content {
  position: absolute;
  inset: 0;
}

.mj-footer__social--whatsapp svg {
  fill: none !important;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 760px) {
  .hero-control {
    display: none;
  }
}

@media (max-width: 350px) {
  .header-search-toggle {
    display: none;
  }
}
