:root {
  --mb-black: #1a1a1a;
  --mb-white: #ffffff;
  --mb-cream: #f5f5f5;
  --mb-gray: #8a8a8a;
  --mb-accent: #1a1a1a;
  --mb-accent-light: #666666;
  --mb-font-heading: 'Montserrat', Arial, sans-serif;
  --mb-font-body: 'Montserrat', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--mb-font-body);
  font-weight: 300;
  color: var(--mb-black);
  background-color: var(--mb-white);
  line-height: 1.7;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== TYPOGRAPHY ===== */
.mb-heading-xl {
  font-family: var(--mb-font-heading);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mb-heading-lg {
  font-family: var(--mb-font-heading);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.mb-heading-md {
  font-family: var(--mb-font-heading);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  line-height: 1.3;
}

.mb-body {
  font-family: var(--mb-font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.8;
  color: #4a4a4a;
}

.mb-label {
  font-family: var(--mb-font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ===== CONTAINER WRAPPER ===== */
.mb-landing {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ===== REVEAL ANIMATIONS ===== */
.mb-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mb-reveal.mb-visible {
  opacity: 1;
  transform: translateY(0);
}

.mb-reveal-delay-1 { transition-delay: 0.15s; }
.mb-reveal-delay-2 { transition-delay: 0.3s; }
.mb-reveal-delay-3 { transition-delay: 0.45s; }
.mb-reveal-delay-4 { transition-delay: 0.6s; }

.mb-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mb-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mb-reveal-left.mb-visible,
.mb-reveal-right.mb-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .mb-reveal,
  .mb-reveal-left,
  .mb-reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .mb-hero__bg {
    animation: none !important;
  }
  .mb-scroll-indicator {
    animation: none !important;
  }
  .mb-parallax {
    transform: none !important;
  }
}

/* ===== CTA BUTTON ===== */
.mb-cta {
  display: inline-block;
  font-family: var(--mb-font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 18px 48px;
  border: 1px solid var(--mb-black);
  background: transparent;
  color: var(--mb-black);
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mb-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--mb-black);
  transition: left 0.4s ease;
  z-index: -1;
}

.mb-cta:hover::before {
  left: 0;
}

.mb-cta:hover {
  color: var(--mb-white);
}

.mb-cta--light {
  border-color: var(--mb-white);
  color: var(--mb-white);
}

.mb-cta--light::before {
  background: var(--mb-white);
}

.mb-cta--light:hover {
  color: var(--mb-black);
}

.mb-cta--accent {
  border-color: var(--mb-accent);
  color: var(--mb-accent);
}

.mb-cta--accent::before {
  background: var(--mb-accent);
}

.mb-cta--accent:hover {
  color: var(--mb-white);
}

/* ===== 2. HERO BANNER ===== */
.mb-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mb-hero__bg {
  position: absolute;
  inset: -3%;
  background: url('hero.jpg') center center / cover no-repeat;
  animation: mb-kenburns 25s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 0;
}

@keyframes mb-kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.03) translate(-0.5%, -0.5%); }
}

.mb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.35) 0%,
    rgba(26, 26, 26, 0.25) 50%,
    rgba(26, 26, 26, 0.5) 100%
  );
  z-index: 1;
}

.mb-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 900px;
}

.mb-hero__heading {
  font-family: var(--mb-font-heading);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mb-white);
  opacity: 0;
  animation: mb-fadeUp 1s 0.3s ease forwards;
}

@keyframes mb-fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.mb-hero__subtitle {
  max-width: 680px;
  margin: 32px auto 0;
  font-family: var(--mb-font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  animation: mb-fadeUp 1s 0.7s ease forwards;
}

.mb-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--mb-white);
  opacity: 0;
  animation: mb-fadeUp 1s 1.4s ease forwards;
}

.mb-scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: var(--mb-white);
  opacity: 0.6;
  animation: mb-scrollBounce 2s ease-in-out infinite;
}

@keyframes mb-scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

.mb-scroll-indicator__text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ===== 3. STATEMENT BLOCK ===== */
.mb-statement {
  padding: clamp(40px, 6vw, 80px) 24px;
  text-align: center;
  background: var(--mb-white);
}

.mb-statement__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mb-statement__text {
  font-family: var(--mb-font-heading);
  font-weight: 600;
  font-size: clamp(0.8rem, 2.2vw, 1.6rem);
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mb-black);
}

.mb-statement__accent {
  display: none;
}

/* ===== 4. SPLIT SECTION ===== */
.mb-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
  background: var(--mb-cream);
}

@media (min-width: 768px) {
  .mb-split {
    grid-template-columns: 1fr 1fr;
  }
}

.mb-split__image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.mb-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mb-split__image:hover img {
  transform: scale(1.03);
}

.mb-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(32px, 5vw, 80px);
}

.mb-split__label {
  margin-bottom: 12px;
  color: var(--mb-accent);
}

.mb-split__title {
  margin-bottom: 16px;
  color: var(--mb-black);
}

.mb-split__text {
  margin-bottom: 12px;
}

.mb-split__text:last-child {
  margin-bottom: 0;
}

.mb-split__bullets {
  list-style: none;
  margin-bottom: 0;
}

.mb-split__bullets li {
  font-family: var(--mb-font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.8;
  color: #4a4a4a;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.mb-split__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 1px;
  background: var(--mb-accent);
}


/* ===== 6. SPLIT REVERSED (Materials) ===== */
.mb-split--reversed {
  background: var(--mb-white);
}

.mb-split--reversed .mb-split__image {
  order: 1;
}

.mb-split--reversed .mb-split__content {
  order: 2;
}

@media (max-width: 767px) {
  .mb-split--reversed .mb-split__image {
    order: 1;
  }
  .mb-split--reversed .mb-split__content {
    order: 2;
  }
}

/* ===== 7. PRODUCT SHOWCASE ===== */
.mb-product-hero {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--mb-white);
}

.mb-product-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .mb-product-hero__inner {
    grid-template-columns: 3fr 2fr;
    min-height: 500px;
  }
}

.mb-product-hero__label {
  color: var(--mb-accent);
  margin-bottom: 8px;
}

.mb-product-hero__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

@media (min-width: 768px) {
  .mb-product-hero__image-wrap {
    aspect-ratio: auto;
  }
}

.mb-product-hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mb-product-hero__image-wrap:hover img {
  transform: scale(1.02);
}

.mb-product-hero__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 48px);
  text-align: center;
}

.mb-product-hero__model {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 8px;
}

.mb-product-hero__price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--mb-accent);
  margin-bottom: 16px;
}

/* ===== 8. QUOTE / MANIFESTO ===== */
.mb-quote {
  padding: clamp(40px, 5vw, 64px) 24px;
  background: var(--mb-white);
  text-align: center;
}

.mb-quote__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.mb-quote__line {
  width: 60px;
  height: 1px;
  background: rgba(26, 26, 26, 0.2);
  margin: 0 auto 24px;
}

.mb-quote__text {
  font-family: var(--mb-font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(0.8rem, 2.2vw, 1.6rem);
  line-height: 1.5;
  color: var(--mb-black);
}

.mb-quote__accent {
  display: none;
}

/* ===== 9. DETAIL SECTION ===== */
.mb-detail {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--mb-black);
  color: var(--mb-white);
}

@media (min-width: 768px) {
  .mb-detail {
    grid-template-columns: 1fr 1fr;
  }
}

.mb-detail__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(32px, 5vw, 80px);
  order: 2;
}

@media (min-width: 768px) {
  .mb-detail__content {
    order: 1;
  }
}

.mb-detail__image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  order: 1;
}

@media (min-width: 768px) {
  .mb-detail__image {
    order: 2;
  }
}

.mb-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mb-detail__image:hover img {
  transform: scale(1.03);
}

.mb-detail__label {
  color: var(--mb-accent-light);
  margin-bottom: 12px;
}

.mb-detail__title {
  margin-bottom: 16px;
  color: var(--mb-white);
}

.mb-detail__text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.mb-detail__text:last-child {
  margin-bottom: 0;
}

/* ===== 10. GALLERY STRIP ===== */
.mb-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 767px) {
  .mb-gallery {
    display: none;
  }
}

.mb-gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.mb-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mb-gallery__item:hover img {
  transform: scale(1.03);
}

/* ===== 11. SPLIT: COMFORT ===== */
/* Uses .mb-split base styles with --cream background */

/* ===== 12. FEATURES GRID ===== */
.mb-features {
  padding: clamp(48px, 6vw, 80px) 24px;
  background: var(--mb-cream);
}

.mb-features__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .mb-features__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
  }
}

@media (min-width: 1200px) {
  .mb-features__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mb-feature {
  text-align: center;
}

.mb-feature__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  position: relative;
}

.mb-feature__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--mb-accent);
  fill: none;
  stroke-width: 1;
}

.mb-feature__title {
  font-family: var(--mb-font-heading);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 3px;
  color: var(--mb-black);
}

.mb-feature__text {
  font-size: 0.85rem;
  color: var(--mb-gray);
  line-height: 1.7;
}

/* ===== 13. CTA FINAL ===== */
.mb-cta-final {
  padding: clamp(48px, 6vw, 80px) 24px;
  background: var(--mb-white);
  text-align: center;
}

.mb-cta-final__inner {
  max-width: 900px;
  margin: 0 auto;
}

.mb-cta-final__title {
  font-family: var(--mb-font-heading);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.4;
  color: var(--mb-black);
  margin-bottom: 24px;
}

.mb-cta-final__accent {
  display: none;
}

/* ===== TABLET OVERRIDES (768px - 1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .mb-hero {
    min-height: 550px;
  }

  .mb-hero__heading {
    font-size: 2.8rem;
  }

  .mb-hero__subtitle {
    font-size: 1.3rem;
  }

  .mb-statement {
    padding: 80px 32px;
  }

  .mb-statement__text {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
  }

  .mb-heading-lg {
    font-size: 1.8rem;
  }

  .mb-split__content {
    padding: 0 32px;
  }

  .mb-quote__text {
    font-size: 1.5rem;
  }

  .mb-detail__content {
    padding: 0 32px;
  }

  .mb-product-hero__info {
    padding: 0 32px;
  }

  .mb-features__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .mb-cta-final__title {
    font-size: 1.6rem;
  }
}

/* ===== MOBILE OVERRIDES (max-width 767px) ===== */
@media (max-width: 767px) {
  .mb-hero {
    min-height: 500px;
  }

  .mb-hero__heading {
    font-size: 2rem;
    letter-spacing: 0.03em;
  }

  .mb-hero__subtitle {
    font-size: 1rem;
    margin-top: 20px;
    line-height: 1.5;
  }

  .mb-hero__content {
    padding: 0 20px;
  }

  .mb-statement {
    padding: 32px 20px;
  }

  .mb-statement__text {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }

  .mb-heading-xl {
    font-size: 1.8rem;
  }

  .mb-heading-lg {
    font-size: 1.5rem;
  }

  .mb-heading-md {
    font-size: 1.2rem;
  }

  .mb-body {
    font-size: 0.9rem;
  }

  .mb-split {
    min-height: auto;
  }

  .mb-split__content {
    padding: 0 16px;
  }

  .mb-split__image {
    min-height: 300px;
  }

  .mb-split__bullets li {
    font-size: 0.9rem;
  }

  .mb-quote {
    padding: 24px 16px;
  }

  .mb-quote__text {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .mb-quote__line {
    margin-bottom: 32px;
  }

  .mb-detail__content {
    padding: 0 20px;
  }

  .mb-detail__image {
    min-height: 300px;
  }

  .mb-product-hero {
    padding: 0;
  }

  .mb-product-hero__info {
    padding: 0 20px;
  }

  .mb-product-hero__image-wrap img {
    aspect-ratio: 3/4;
    object-fit: cover;
  }

  .mb-product-hero__label {
    display: none;
  }

  .mb-product-hero__model {
    font-size: 1.2rem;
  }

  .mb-product-hero__price {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  .mb-cta {
    padding: 14px 36px;
    font-size: 0.65rem;
  }

  .mb-cta-final {
    padding: 32px 16px;
  }

  .mb-cta-final__title {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .mb-features {
    padding: 40px 20px;
  }

  .mb-features__inner {
    grid-template-columns: 1fr;
  }

  .mb-feature:nth-child(n+3) {
    display: none;
  }

  .mb-feature__title {
    font-size: 1.1rem;
  }

  .mb-feature__text {
    font-size: 0.8rem;
  }
}

.mb-cta-final__title {
font-size: 24px !important;
}
.mb-quote__text {
font-size: 23px !important;
}
.mb-detail__title {
font-size: 35px !important;
font-weight: 600 !important;
}
.mb-hero__heading {
font-weight: 500 !important;
line-height: 1 !important;
}
section:nth-of-type(1) .mb-split__label {
text-align: left !important;
font-family: 'Raleway', Arial, sans-serif !important;
font-weight: 500 !important;
}
section:nth-of-type(1) .mb-split__title {
font-size: 35px !important;
text-align: left !important;
font-family: 'Montserrat', Arial, sans-serif !important;
font-weight: 600 !important;
padding-top: 0px !important;
padding-left: 0px !important;
padding-right: 0px !important;
padding-bottom: 0px !important;
}
.mb-split--reversed .mb-split__title {
font-size: 35px !important;
font-weight: 600 !important;
}
.mb-split:last-of-type .mb-split__title {
font-size: 35px !important;
font-weight: 600 !important;
}
.mb-hero__subtitle {
text-align: center !important;
font-weight: 300 !important;
line-height: 1 !important;
}
.mb-split--reversed .mb-split__text:first-of-type {
line-height: 1.8 !important;
padding-top: 18px !important;
padding-bottom: 18px !important;
}
.mb-split--reversed .mb-split__text:last-of-type {
line-height: 1.8 !important;
}
.mb-statement__text {
font-size: 16px !important;
font-weight: 500 !important;
line-height: 1.6 !important;
padding-top: 7px !important;
padding-left: 7px !important;
padding-right: 7px !important;
padding-bottom: 7px !important;
}
.mb-statement {
padding-top: 19px !important;
padding-bottom: 19px !important;
}