/* ========================================
   BRAND STORY — SINGLE COLUMN, EDITORIAL
   ======================================== */
.mb-story-section {
  background: var(--alabaster);
  padding: var(--section-v) 0;
}

.mb-story {
  max-width: var(--prose-max);
  margin: 0 auto;
  padding: 0 var(--section-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-5);
}

.mb-story__col--mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}

.mb-story__monogram { width: 48px; height: auto; opacity: 0.7; }

.mb-story__gold-line {
  width: 1px; height: 0;
  background: var(--gold);
  opacity: 0.4;
  transition: height 1.8s var(--ease);
}
.mb-story__gold-line.is-visible { height: 48px; }

.mb-story__col--text {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.mb-story__headline {
  font-size: var(--fs-h2);
  color: var(--onyx);
  margin-bottom: var(--s-3);
}

.mb-story__lead {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--text);
}

.mb-story__body {
  font-size: var(--fs-body);
  line-height: 2;
  color: var(--bronze);
}

.mb-story__pull {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.8;
  color: var(--onyx);
  padding-top: var(--s-4);
}
:lang(he) .mb-story__pull, .rtl .mb-story__pull {
  font-family: var(--ff-display-he);
}

.mb-story__signature {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: var(--fs-small);
  color: var(--bronze);
  opacity: 0.7;
}

/* ========================================
   PRODUCT WORLDS — SOLE & TERRA
   Each = full viewport, bottle + text
   No pseudo-element effects. Let the product speak.
   ======================================== */
.mb-worlds { }

.mb-world {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}

.mb-world--sole {
  background: var(--espresso);
}

.mb-world--terra {
  background: var(--black);
}

/* Visual */
.mb-world__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s-10) var(--s-8);
  position: relative;
}

.mb-world__spotlight { display: none; } /* removed — effects without light source are dishonest */

.mb-world__bottle {
  position: relative; z-index: 2;
  max-height: clamp(280px, 45vh, 420px);
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
  transition: transform 1s var(--ease);
}
.mb-world:hover .mb-world__bottle {
  transform: translateY(-4px);
}

.mb-world__ground {
  display: block;
  width: 100px; height: 8px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.2) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: var(--s-2);
}

/* Text */
.mb-world__text {
  padding: var(--s-8) var(--section-h) var(--s-8) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.mb-world__name {
  font-size: var(--fs-display);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--alabaster);
  line-height: 1;
}

.mb-world__sub {
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--champagne);
  opacity: 0.5;
}

.mb-world__mood {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: var(--fs-body);
  line-height: 1.9;
  color: var(--champagne);
  opacity: 0.7;
  max-width: 32ch;
}
:lang(he) .mb-world__mood, .rtl .mb-world__mood {
  font-family: var(--ff-display-he);
}

.mb-world__price {
  font-size: var(--fs-small);
  color: var(--champagne);
  opacity: 0.35;
}

.mb-world__cta {
  display: inline-block;
  align-self: flex-start;
  padding: 12px 32px;
  border: 1px solid rgba(176,141,87,0.4);
  color: var(--alabaster);
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: border-color var(--dur-slow) var(--ease),
              background var(--dur-slow) var(--ease);
}
.mb-world__cta:hover {
  border-color: var(--gold);
  background: rgba(176,141,87,0.08);
  color: var(--alabaster);
}
:lang(he) .mb-world__cta, .rtl .mb-world__cta {
  font-family: var(--ff-body-he);
  letter-spacing: 0.05em;
}

/* TERRA: flip layout */
.mb-world--terra { direction: ltr; }
.mb-world--terra .mb-world__visual { order: 2; }
.mb-world--terra .mb-world__text { order: 1; padding-left: var(--section-h); padding-right: var(--s-6); }

@media (max-width: 768px) {
  .mb-world {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }
  .mb-world__visual { padding: var(--s-8) var(--s-3) var(--s-2); }
  .mb-world__text {
    padding: var(--s-2) var(--s-3) var(--s-8);
    align-items: center;
  }
  .mb-world__bottle { max-height: 260px; }
  .mb-world--terra .mb-world__visual { order: 1; }
  .mb-world--terra .mb-world__text { order: 2; padding: var(--s-2) var(--s-3) var(--s-8); }
  .mb-world__cta { align-self: center; }
  .mb-world__mood { max-width: 100%; }
  .mb-world__text { direction: inherit; }
}

/* ========================================
   CRAFT — WHISPER
   ======================================== */
.mb-craft-section {
  background: var(--espresso);
  padding: var(--section-v) 0;
  text-align: center;
}

.mb-craft {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--section-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-6);
}

.mb-craft__hairline {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.mb-craft__heading {
  font-size: var(--fs-h1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--alabaster);
  opacity: 0.9;
}
:lang(he) .mb-craft__heading, .rtl .mb-craft__heading {
  font-family: var(--ff-display-he);
  letter-spacing: 0; text-transform: none;
}

.mb-craft__materials {
  display: flex; align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap; justify-content: center;
}

.mb-craft__material {
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--champagne);
  opacity: 0.5;
}
:lang(he) .mb-craft__material, .rtl .mb-craft__material {
  font-family: var(--ff-body-he);
  text-transform: none; letter-spacing: 0.05em;
}

.mb-craft__dot { color: var(--gold); opacity: 0.3; }

.mb-craft__intro {
  font-size: var(--fs-body);
  line-height: 2;
  color: var(--champagne);
  max-width: 52ch;
  opacity: 0.7;
}

.mb-craft__values {
  display: flex;
  gap: var(--s-8);
  margin-top: var(--s-4);
  flex-wrap: wrap;
  justify-content: center;
}

.mb-craft__value {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
}

.mb-craft__value-title {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  color: var(--alabaster);
  margin-bottom: var(--s-1);
  font-weight: 400;
}
:lang(he) .mb-craft__value-title, .rtl .mb-craft__value-title {
  font-family: var(--ff-display-he);
  letter-spacing: normal;
}

.mb-craft__value-text {
  font-size: var(--fs-small);
  color: var(--champagne);
  opacity: 0.6;
  line-height: 1.8;
  max-width: none;
}

.mb-craft__closing {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--champagne);
  opacity: 0.7;
  max-width: 48ch;
}
:lang(he) .mb-craft__closing, .rtl .mb-craft__closing {
  font-family: var(--ff-display-he);
}

/* ========================================
   NEWSLETTER — INVITATION
   ======================================== */
.mb-newsletter-section {
  background: var(--alabaster);
  padding: var(--section-v) 0;
}

.mb-newsletter {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 var(--section-h);
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: var(--s-3);
}

.mb-newsletter__hairline {
  display: block; width: 32px; height: 1px;
  background: var(--gold); opacity: 0.4;
}

.mb-newsletter__heading { font-size: var(--fs-h3); }
.mb-newsletter__sub {
  font-size: var(--fs-small); color: var(--bronze);
  line-height: 1.9; max-width: 40ch; opacity: 0.7;
}

.mb-newsletter__form {
  display: flex; align-items: flex-end;
  gap: var(--s-2); width: 100%;
  max-width: 360px; margin-top: var(--s-2);
}
.mb-newsletter__field { flex: 1; }
.mb-newsletter__input {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--champagne);
  padding: 10px 0; font-family: inherit;
  font-size: var(--fs-body); color: var(--onyx);
  outline: none; transition: border-color 0.4s;
}
.mb-newsletter__input::placeholder { color: var(--bronze); opacity: 0.4; }
.mb-newsletter__input:focus { border-color: var(--gold); }

.mb-newsletter__submit {
  background: none; border: none; cursor: pointer;
  color: var(--gold); font-size: var(--fs-micro);
  text-transform: uppercase; letter-spacing: 0.15em;
  padding: 10px 0; white-space: nowrap;
  font-family: var(--ff-body);
  opacity: 0.7; transition: opacity 0.3s;
}
.mb-newsletter__submit:hover { opacity: 1; }

.mb-newsletter__message { font-size: var(--fs-small); color: var(--gold); min-height: 1.5em; }

.mb-newsletter__trust {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.7;
  max-width: none;
}

@media (max-width: 480px) {
  .mb-newsletter__form { flex-direction: column; align-items: stretch; }
}

/* ========================================
   FOOTER — CONCLUSION
   ======================================== */
.mb-footer {
  background: var(--espresso);
  padding: var(--section-v) 0 var(--s-6);
  text-align: center;
}

.mb-footer__inner {
  display: flex; flex-direction: column;
  align-items: center; gap: var(--s-4);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--section-h);
}

.mb-footer__brand {
  display: flex; flex-direction: column;
  align-items: center; gap: var(--s-2);
  margin-bottom: var(--s-4);
}
.mb-footer__monogram { width: 48px; height: auto; }
.mb-footer__brand .caps {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--champagne);
  opacity: 0.5;
  max-width: none;
}

.mb-footer-nav,
.mb-footer .mb-nav {
  list-style: none; display: flex;
  gap: var(--s-4); flex-wrap: wrap;
  justify-content: center;
  margin: 0; padding: 0;
}
.mb-footer-nav li a,
.mb-footer .mb-nav li a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--champagne);
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}
.mb-footer-nav li a:hover,
.mb-footer .mb-nav li a:hover { opacity: 1; color: var(--gold); }

.mb-footer__meta {
  display: flex; align-items: center;
  gap: var(--s-4); flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--s-3);
}

.mb-footer__social a { color: var(--champagne); opacity: 0.5; transition: opacity 0.3s; }
.mb-footer__social a:hover { opacity: 0.9; }

.mb-footer__legal { display: flex; gap: var(--s-2); }
.mb-footer__legal a {
  font-size: var(--fs-micro); color: var(--champagne);
  opacity: 0.45; transition: opacity 0.3s;
}
.mb-footer__legal a:hover { opacity: 0.8; }

.mb-footer__copy {
  font-size: var(--fs-micro); color: var(--champagne);
  opacity: 0.35; margin-top: var(--s-8);
}

.mb-lang-switcher--footer a { color: var(--champagne); opacity: 0.6; }
