:root {
    --mb-black: #1a1a1a;
    --mb-white: #ffffff;
    --mb-cream: #f5f5f5;
    --mb-gray: #8a8a8a;
    --mb-accent: #1a1a1a;
    --mb-accent-light: #666666;
    --mb-font-heading: 'Cormorant Garamond', Georgia, 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: 300;
    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: 400;
    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: 400;
    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;
  }

  /* ===== 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;
    }
    .mb-cinematic img {
      animation: 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: 300;
    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: 300;
    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(80px, 12vw, 160px) 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: 400;
    font-size: clamp(1.3rem, 2.6vw, 2rem);
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mb-black);
  }

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

  /* ===== 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: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 80px);
  }

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

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

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

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

  .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);
  }


  /* ===== 5. CINEMATIC FULL-WIDTH ===== */
  .mb-cinematic {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 21 / 9;
  }

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

  .mb-cinematic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: mb-kenburns 25s ease-in-out infinite alternate;
  }

  /* ===== 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(80px, 10vw, 140px) 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: 16px;
  }

  .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: flex-start;
    padding: clamp(40px, 5vw, 72px) clamp(32px, 5vw, 64px);
    text-align: left;
  }

  .mb-product-hero__model {
    font-family: var(--mb-font-heading);
    font-weight: 400;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 8px;
  }

  .mb-product-hero__price {
    font-family: var(--mb-font-heading);
    font-weight: 500;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    color: var(--mb-accent);
    margin-bottom: 40px;
  }

  /* ===== 8. QUOTE / MANIFESTO ===== */
  .mb-quote {
    padding: clamp(60px, 8vw, 100px) 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 48px;
  }

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

  .mb-quote__accent {
    font-style: normal;
    font-weight: 500;
  }

  /* ===== 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: clamp(48px, 6vw, 96px) 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: 24px;
  }

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

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

  /* ===== 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(80px, 10vw, 120px) 24px;
    background: var(--mb-cream);
  }

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

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

  @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 24px;
    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.3rem;
    margin-bottom: 12px;
    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(100px, 14vw, 200px) 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: 300;
    font-style: italic;
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    line-height: 1.4;
    color: var(--mb-black);
    margin-bottom: 40px;
  }

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