/* ============================================
   Maryam Omaira — Couture House
   Visual system: blush + ink editorial
   Type: Cormorant Garamond (display) + Inter (body)
   ============================================ */

:root {
  --ink:     #231F1C;
  --noir:    #141210;
  --blush:   #EADFDD;
  --blush-2: #EFE6E4;
  --ivory:   #FBF7F2;
  --bone:    #F0E9E0;
  --rose:    #D9C3BD;
  --line:    #E6DCD3;
  --line-2:  #DAD0C6;
  --muted:   #7A716B;

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1400px;
  --pad-x: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--ivory); color: var(--ink); font-family: var(--sans); }
body { font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
em { font-style: italic; font-family: var(--serif); }

::selection { background: var(--ink); color: var(--ivory); }

/* ================ TYPE ================ */
.mo-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.mo-display em { font-style: italic; }
.mo-display--hero { font-size: clamp(48px, 7.5vw, 130px); line-height: 0.94; }
.mo-display--xl { font-size: clamp(56px, 8vw, 140px); line-height: 0.94; }
.mo-display--light { color: var(--ivory); }

.mo-lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.35;
  font-weight: 400;
  color: var(--ink);
  max-width: 56ch;
  margin: 24px 0 0;
}
.mo-lede--center { margin-left: auto; margin-right: auto; text-align: center; }

.mo-body { color: var(--ink); opacity: 0.78; max-width: 56ch; line-height: 1.65; margin: 16px 0 0; }
.mo-body em { opacity: 1; }

.mo-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.mo-eyebrow--lg { font-size: 12px; opacity: 1; margin-bottom: 22px; }
.mo-eyebrow--on-dark { color: var(--blush); opacity: 0.85; }
.mo-eyebrow__num {
  display: inline-block;
  font-family: var(--serif); font-style: italic;
  font-size: 18px; letter-spacing: 0;
  text-transform: none;
  opacity: 0.6;
  border-right: 1px solid currentColor;
  padding-right: 14px;
  line-height: 1;
}

/* ================ BUTTONS ================ */
.mo-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.mo-btn--ink { background: var(--ink); color: var(--ivory); }
.mo-btn--ink:hover { background: var(--noir); transform: translateY(-1px); }
.mo-btn--outline { border-color: var(--ink); color: var(--ink); }
.mo-btn--outline:hover { background: var(--ink); color: var(--ivory); }
.mo-btn--blush { background: var(--blush); color: var(--ink); }
.mo-btn--blush:hover { background: var(--ivory); }
.mo-btn--ghost { color: var(--ivory); border-color: var(--ivory); background: transparent; }
.mo-btn--ghost:hover { background: var(--ivory); color: var(--ink); }
.mo-btn--ghost-light { color: var(--ivory); border-color: rgba(250,247,242,0.4); }
.mo-btn--ghost-light:hover { background: rgba(250,247,242,0.1); }
.mo-btn--lg { padding: 18px 32px; font-size: 12px; }

.mo-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.mo-link--arrow { border-bottom: none; }
.mo-link--arrow:hover { gap: 14px; }
.mo-link--quiet { border: none; opacity: 0.72; }
.mo-link--quiet:hover { opacity: 1; }

/* ================ NAVBAR ================ */
.mo-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,247,242,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.mo-nav--scrolled {
  border-bottom-color: var(--line);
  background: rgba(251,247,242,0.97);
}
.mo-nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 76px;
}
.mo-nav__menubtn {
  display: none;
  width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px;
  align-self: center;
}
.mo-nav__menubtn span { height: 1px; background: var(--ink); display: block; }
.mo-nav__menubtn span:nth-child(2) { width: 70%; }
.mo-nav__brand {
  display: inline-flex; cursor: pointer; align-items: center;
}
.mo-nav__links {
  display: flex; gap: 32px; align-items: center;
  justify-self: center;
}
.mo-nav__links a {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  color: var(--ink); opacity: 0.72; transition: opacity 0.2s ease;
  position: relative; padding: 6px 0;
  display: inline-flex; align-items: center;
}
.mo-nav__links a:hover, .mo-nav__links a.is-active { opacity: 1; }
.mo-nav__links a.is-active::after {
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:1px; background: var(--ink);
}
.mo-nav__cta {
  display: flex; align-items: center; gap: 22px;
}
.mo-nav__contact {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  color: var(--ink); opacity: 0.75; transition: opacity 0.2s;
  padding: 6px 4px;
}
.mo-nav__contact:hover { opacity: 1; }
.mo-btn--sm { padding: 11px 20px; font-size: 11px; }

@media (max-width: 1100px) {
  .mo-nav__menubtn { display: flex; order: -1; }
  .mo-nav__links { display: none; }
}
@media (max-width: 720px) {
  .mo-nav__cta .mo-nav__contact { display: none; }
  .mo-nav__cta .mo-btn { padding: 10px 16px; font-size: 10px; letter-spacing: 0.18em; }
  .mo-nav__inner { height: 64px; }
}
@media (max-width: 520px) {
  .mo-nav__brand .mo-wordmark span { font-size: 14px !important; letter-spacing: 0.24em !important; }
}

/* Drawer */
.mo-drawer { position: fixed; inset: 0; z-index: 60; pointer-events: none; }
.mo-drawer.is-open { pointer-events: auto; }
.mo-drawer__scrim {
  position: absolute; inset: 0; background: rgba(20,18,16,0); transition: background 0.4s ease;
}
.mo-drawer.is-open .mo-drawer__scrim { background: rgba(20,18,16,0.45); }
.mo-drawer__panel {
  position: absolute; top:0; left:0; bottom:0;
  width: min(440px, 90vw);
  background: var(--ivory);
  padding: 28px 36px 36px;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mo-drawer.is-open .mo-drawer__panel { transform: translateX(0); }
.mo-drawer__top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.mo-drawer__close { font-size: 20px; opacity: 0.7; }
.mo-drawer__close:hover { opacity: 1; }
.mo-drawer__links { display: flex; flex-direction: column; padding: 32px 0; gap: 4px; }
.mo-drawer__links a {
  font-family: var(--serif);
  font-size: 30px;
  display: flex; gap: 18px; align-items: baseline;
  padding: 10px 0;
  transition: padding-left 0.25s ease;
}
.mo-drawer__links a:hover { padding-left: 8px; }
.mo-drawer__links a.is-active { font-style: italic; }
.mo-drawer__num {
  font-size: 11px; font-family: var(--sans); letter-spacing: 0.2em;
  font-style: normal; opacity: 0.5; min-width: 24px;
}
.mo-drawer__foot { margin-top: auto; padding-top: 32px; border-top: 1px solid var(--line); font-size: 13px; line-height: 1.7; opacity: 0.78; }
.mo-drawer__foot a { border-bottom: 1px solid transparent; }
.mo-drawer__foot a:hover { border-bottom-color: currentColor; }

/* ================ HERO ================ */
.mo-hero {
  position: relative;
  height: clamp(720px, 100vh, 980px);
  overflow: hidden;
  background: var(--ink);
}
.mo-hero--sub { height: clamp(560px, 80vh, 760px); }
.mo-hero__media { position: absolute; inset: 0; }
.mo-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
  filter: brightness(0.92);
}
.mo-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,0.25) 0%, rgba(20,18,16,0) 40%, rgba(20,18,16,0.55) 100%);
}
.mo-hero__overlay {
  position: relative; height: 100%;
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 80px;
  color: var(--ivory);
}
.mo-hero__inner { max-width: 920px; }
.mo-hero__sub {
  font-family: var(--serif); font-size: clamp(18px, 1.6vw, 24px);
  margin: 24px 0 36px; max-width: 56ch; line-height: 1.4;
  color: var(--blush);
}
.mo-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.mo-hero__meta {
  display: flex; gap: 60px; flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(234,223,221,0.25);
  font-size: 12px;
}
.mo-hero__meta div { display: flex; flex-direction: column; gap: 4px; }
.mo-hero__meta span { opacity: 0.6; letter-spacing: 0.2em; text-transform: uppercase; font-size: 10px; }
.mo-hero__meta strong {
  font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: 0.01em;
}
.mo-hero__scroll {
  position: absolute; bottom: 24px; right: var(--pad-x);
  color: var(--blush); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.7;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .mo-hero__scroll { display: none; }
  .mo-hero__overlay { padding-bottom: 48px; }
  .mo-hero__meta { gap: 28px; margin-top: 36px; }
}

/* sub-hero (text-only intro) */
.mo-sub-hero {
  padding: clamp(80px, 12vw, 160px) var(--pad-x) clamp(60px, 8vw, 100px);
  max-width: var(--maxw); margin: 0 auto;
  text-align: center;
}
.mo-sub-hero--couture {
  background: var(--blush-2);
  margin-bottom: clamp(60px, 8vw, 100px);
}
.mo-sub-hero--jewel { background: linear-gradient(180deg, var(--blush) 0%, var(--blush-2) 100%); }
.mo-sub-hero__inner { max-width: 1100px; margin: 0 auto; }
.mo-sub-hero .mo-eyebrow { justify-content: center; margin-bottom: 28px; }

/* ================ SECTIONS ================ */
.mo-sec {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
}
.mo-sec__head { margin-bottom: 48px; max-width: 800px; }
.mo-sec__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.mo-sec__head--center .mo-eyebrow { justify-content: center; }
.mo-sec__sub { margin-top: 20px; max-width: 60ch; color: var(--muted); font-size: 17px; line-height: 1.5; }
.mo-sec__head--center .mo-sec__sub { margin-left: auto; margin-right: auto; }

/* ================ TIERS ================ */
.mo-tiers__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 56px);
}
.mo-tier { cursor: pointer; }
.mo-tier__img {
  aspect-ratio: 4/5; overflow: hidden; background: var(--bone);
  position: relative;
}
.mo-tier__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mo-tier:hover .mo-tier__img img { transform: scale(1.04); }
.mo-tier__body { padding-top: 28px; max-width: 50ch; }
.mo-tier__body h3 { font-size: clamp(36px, 4vw, 56px); margin: 14px 0 16px; }
.mo-tier__body p { color: var(--muted); margin: 0 0 22px; font-size: 16px; line-height: 1.6; }
@media (max-width: 820px) {
  .mo-tiers__grid { grid-template-columns: 1fr; }
}

/* ================ DESIGNER TEASER ================ */
.mo-designer__inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.mo-designer__copy .mo-display { margin-bottom: 28px; }
.mo-designer__facts {
  display: flex; gap: 48px; margin: 36px 0;
  padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.mo-designer__facts div { display: flex; flex-direction: column; }
.mo-designer__facts strong { font-family: var(--serif); font-size: 44px; line-height: 1; font-weight: 400; }
.mo-designer__facts span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6; margin-top: 6px; }
@media (max-width: 900px) {
  .mo-designer__inner { grid-template-columns: 1fr; gap: 40px; }
  .mo-designer__facts { gap: 24px; flex-wrap: wrap; }
}

/* ================ PLACEHOLDERS ================ */
.mo-placeholder {
  position: relative; overflow: hidden;
  background: var(--bone); aspect-ratio: 4/5;
  display: flex; align-items: flex-end;
}
.mo-placeholder--portrait { aspect-ratio: 3/4; }
.mo-placeholder--tall { aspect-ratio: 3/4.5; }
.mo-placeholder--square { aspect-ratio: 1/1; }
.mo-placeholder--wide { aspect-ratio: 16/9; }
.mo-placeholder__stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 18px, rgba(35,31,28,0.05) 18px 19px);
}
.mo-placeholder__label {
  position: relative; padding: 18px 22px; background: rgba(251,247,242,0.92); margin: 18px;
  font-family: monospace; font-size: 11px;
}
.mo-placeholder__label .mo-eyebrow { display: block; font-family: var(--sans); margin-bottom: 6px; }
.mo-placeholder__label em { font-family: var(--serif); font-style: italic; font-size: 14px; opacity: 0.8; }

/* ================ STRIP / CARDS ================ */
.mo-strip__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 20px; margin-bottom: 48px;
}
.mo-strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}
@media (max-width: 1100px) { .mo-strip__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .mo-strip__grid { grid-template-columns: 1fr; } }

.mo-card { cursor: pointer; }
.mo-card__img {
  aspect-ratio: 3/4; background: var(--bone);
  overflow: hidden; position: relative;
}
.mo-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mo-card:hover .mo-card__img img { transform: scale(1.04); }
.mo-card__meta { padding: 16px 0 0; }
.mo-card__code {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.5;
  font-family: var(--sans);
}
.mo-card__name {
  font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.2;
  margin: 6px 0 10px;
}
.mo-card__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.mo-card__price { font-weight: 500; }
.mo-card__cta {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.6; transition: opacity 0.2s;
}
.mo-card:hover .mo-card__cta { opacity: 1; }

/* ================ PRESS ================ */
.mo-press { text-align: center; }
.mo-press .mo-eyebrow { justify-content: center; margin-bottom: 36px; }
.mo-press__row {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap;
  gap: clamp(28px, 6vw, 88px);
  padding: 36px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.mo-press__logo {
  font-family: var(--serif); font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.16em; opacity: 0.55;
  white-space: nowrap;
}
.mo-press__quote {
  max-width: 800px; margin: 56px auto 0;
  font-family: var(--serif); font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.4; font-style: italic; color: var(--ink);
}
.mo-press__quote span {
  font-style: normal; font-size: 1.3em; opacity: 0.4;
}
.mo-press__quote em {
  display: block; margin-top: 18px; font-size: 12px; font-family: var(--sans);
  letter-spacing: 0.22em; text-transform: uppercase; font-style: normal;
  opacity: 0.6;
}

/* ================ APPOINTMENT BAND ================ */
.mo-band {
  background: var(--ink); color: var(--ivory);
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
}
.mo-band--alt { background: var(--blush-2); color: var(--ink); }
.mo-band__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: end;
}
.mo-band__inner--narrow { grid-template-columns: 1fr; max-width: 900px; text-align: center; }
.mo-band__inner--narrow .mo-eyebrow { justify-content: center; }
.mo-band__sub {
  color: var(--blush); margin-top: 20px; font-family: var(--serif);
  font-size: 18px; line-height: 1.4;
}
.mo-band--alt .mo-band__sub { color: var(--muted); }
.mo-band__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.mo-pull {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 42px);
  line-height: 1.3; font-style: italic; margin: 28px 0; text-wrap: balance;
}
.mo-sig {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.6;
}
@media (max-width: 820px) {
  .mo-band__inner { grid-template-columns: 1fr; }
  .mo-band__cta { justify-content: flex-start; }
}

/* ================ EDITORIAL (designer page) ================ */
.mo-editorial {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--pad-x);
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.mo-editorial__col .mo-display { margin: 14px 0 20px; }
.mo-stats {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.mo-stats li {
  border-top: 1px solid var(--line); padding-top: 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.mo-stats strong { font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1; }
.mo-stats span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6; }
@media (max-width: 900px) {
  .mo-editorial { grid-template-columns: 1fr; }
}

.mo-timeline {
  max-width: 1000px; margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--pad-x);
  text-align: center;
}
.mo-timeline .mo-eyebrow { justify-content: center; }
.mo-timeline .mo-display { margin: 14px 0 56px; }
.mo-timeline__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  text-align: left;
}
.mo-timeline__list::before {
  content: ""; position: absolute; top: 14px; left: 0; right: 0; height: 1px; background: var(--line);
}
.mo-timeline__list li {
  position: relative; padding: 32px 16px 0 0;
}
.mo-timeline__list li::before {
  content: ""; position: absolute; top: 9px; left: 0; width: 11px; height: 11px; border-radius: 50%;
  background: var(--ink);
}
.mo-timeline__list strong {
  display: block; font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: 8px;
}
.mo-timeline__list span { font-size: 13px; opacity: 0.7; line-height: 1.5; }
@media (max-width: 900px) {
  .mo-timeline__list { grid-template-columns: 1fr; }
  .mo-timeline__list::before { left: 5px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .mo-timeline__list li { padding: 0 0 28px 28px; }
  .mo-timeline__list li::before { left: 0; top: 6px; }
}

/* ================ BRIDAL PROCESS ================ */
.mo-process__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  counter-reset: process;
}
.mo-process__list li {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.mo-process__num {
  font-family: var(--serif); font-style: italic; font-size: 38px; opacity: 0.4; display: block; margin-bottom: 14px;
}
.mo-process__list h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; margin: 0 0 12px; }
.mo-process__list p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }
@media (max-width: 820px) {
  .mo-process__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .mo-process__list { grid-template-columns: 1fr; }
}

/* ================ GALLERY (couture & bridal product grid) ================ */
.mo-gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}
@media (max-width: 1100px) { .mo-gallery__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .mo-gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .mo-gallery__grid { grid-template-columns: 1fr; } }
.mo-gallery__foot {
  margin-top: 40px; text-align: center; font-size: 13px; color: var(--muted);
  font-style: italic; font-family: var(--serif); font-size: 17px;
}

/* ================ RUNWAY (couture page hero) ================ */
.mo-runway {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 5vw, 80px) var(--pad-x) 0;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(20px, 3vw, 40px);
}
.mo-runway__big { position: relative; }
.mo-runway__big img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.mo-runway__caption {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(251,247,242,0.94); padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.mo-runway__sides { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 40px); }
.mo-runway__side { position: relative; }
.mo-runway__side img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.mo-runway__side > div {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(251,247,242,0.94); padding: 12px 18px;
}
.mo-runway__name { font-family: var(--serif); font-size: 18px; margin-top: 4px; }
.mo-runway__price { font-size: 13px; opacity: 0.7; margin-top: 2px; }
@media (max-width: 900px) {
  .mo-runway { grid-template-columns: 1fr; }
}

/* ================ SHOP ================ */
.mo-shop-hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--pad-x) clamp(40px, 5vw, 60px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end;
}
.mo-shop-hero__note {
  border-left: 1px solid var(--line); padding-left: 24px;
  font-size: 14px; color: var(--muted); line-height: 1.6;
}
.mo-shop-hero__note strong { display: block; color: var(--ink); margin-bottom: 8px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
@media (max-width: 800px) { .mo-shop-hero { grid-template-columns: 1fr; } .mo-shop-hero__note { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; } }

.mo-shop-bar {
  max-width: var(--maxw); margin: 0 auto;
  padding: 24px var(--pad-x);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  position: sticky; top: 73px; z-index: 20;
  background: var(--ivory);
}
.mo-cats { display: flex; gap: 8px; flex-wrap: wrap; }
.mo-cat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  transition: all 0.2s ease;
}
.mo-cat em { font-style: normal; font-family: var(--serif); opacity: 0.5; font-size: 14px; }
.mo-cat:hover { border-color: var(--ink); }
.mo-cat.is-on { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.mo-cat.is-on em { color: var(--blush); opacity: 0.8; }

.mo-sort { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.mo-sort select {
  font: inherit; padding: 8px 32px 8px 14px; border-radius: 999px;
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M1 3l4 4 4-4' stroke='%23231F1C' stroke-width='1' fill='none'/></svg>") right 14px center no-repeat;
  border: 1px solid var(--line); -webkit-appearance: none; appearance: none;
  letter-spacing: 0.16em; text-transform: uppercase;
}

.mo-shop-grid-wrap { padding-top: clamp(40px, 6vw, 64px); }
.mo-shop-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px) clamp(16px, 2.5vw, 32px);
}
@media (max-width: 1100px) { .mo-shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .mo-shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .mo-shop-grid { grid-template-columns: 1fr; } }

/* ================ JEWELLERY ================ */
.mo-jewel { padding: clamp(60px, 8vw, 100px) var(--pad-x); max-width: var(--maxw); margin: 0 auto; }
.mo-jewel__inner { display: flex; flex-direction: column; gap: clamp(48px, 6vw, 80px); }
.mo-jewel__quote {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.mo-jewel__quote p {
  font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2vw, 30px);
  line-height: 1.4; margin: 0;
}
.mo-jewel__quote em { display: block; margin-top: 14px; font-style: normal; font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.6; }
.mo-jewel__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
@media (max-width: 720px) { .mo-jewel__grid { grid-template-columns: repeat(2, 1fr); } }
.mo-jewel__cta { text-align: center; max-width: 720px; margin: 0 auto; }
.mo-jewel__cta .mo-display { margin-bottom: 18px; }
.mo-jewel__cta p { color: var(--muted); max-width: 50ch; margin: 0 auto; }

/* ================ APPOINTMENTS / FORM ================ */
.mo-appt {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x) clamp(80px, 10vw, 140px);
}
.mo-appt__inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .mo-appt__inner { grid-template-columns: 1fr; } }

.mo-form { background: var(--ivory); }
.mo-form--compact { padding-top: 24px; }
.mo-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 520px) { .mo-form__row { grid-template-columns: 1fr; } }
.mo-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.mo-field > span {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.65; font-weight: 500;
}
.mo-field input, .mo-field textarea {
  font: inherit; color: inherit;
  background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 16px; font-family: var(--serif);
  outline: none;
  transition: border-color 0.2s ease;
}
.mo-field input:focus, .mo-field textarea:focus { border-color: var(--ink); }
.mo-field--err input, .mo-field--err textarea { border-color: #B5453C; }
.mo-field em {
  font-family: var(--sans); font-style: normal;
  font-size: 12px; color: #B5453C; letter-spacing: 0.06em;
}
.mo-pillrow { display: flex; gap: 8px; flex-wrap: wrap; }
.mo-pill {
  padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  transition: all 0.2s ease;
}
.mo-pill:hover { border-color: var(--ink); }
.mo-pill.is-on { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.mo-form__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.mo-form__legal { font-size: 12px; color: var(--muted); margin-top: 18px; max-width: 56ch; }
.mo-form--sent {
  text-align: left; padding: 40px 32px; background: var(--blush-2);
}

/* ================ APPT SIDE ================ */
.mo-appt__side { display: flex; flex-direction: column; gap: 24px; }
.mo-card-block {
  background: var(--blush-2); padding: 28px 32px;
}
.mo-card-block .mo-eyebrow { margin-bottom: 14px; }
.mo-card-block p { margin: 0; font-size: 14px; line-height: 1.6; }
.mo-ticks { list-style: none; padding: 0; margin: 0; }
.mo-ticks li {
  padding: 10px 0 10px 26px; position: relative;
  font-size: 14px; line-height: 1.5;
  border-bottom: 1px solid rgba(35,31,28,0.08);
}
.mo-ticks li:last-child { border-bottom: none; }
.mo-ticks li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 12px; height: 1px; background: var(--ink);
}
.mo-contactlist a {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0; gap: 16px;
  border-bottom: 1px solid rgba(35,31,28,0.08);
  font-size: 14px;
}
.mo-contactlist a:last-child { border-bottom: none; }
.mo-contactlist span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; }
.mo-contactlist strong { font-family: var(--serif); font-weight: 400; font-size: 17px; }

/* ================ VISIT ================ */
.mo-visit { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x) clamp(80px, 10vw, 140px); }
.mo-visit__grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .mo-visit__grid { grid-template-columns: 1fr; } }
.mo-visit__col .mo-eyebrow { margin: 28px 0 8px; }
.mo-visit__col .mo-eyebrow:first-child { margin-top: 0; }
.mo-address { font-family: var(--serif); font-size: 22px; line-height: 1.45; margin: 0 0 6px; }
.mo-map {
  position: relative; aspect-ratio: 16/11; background: var(--bone);
  overflow: hidden;
}
.mo-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.6) contrast(0.95); }
.mo-map__pin {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--ivory); padding: 14px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.mo-map__pin span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.mo-map__pin small { font-size: 11px; opacity: 0.5; font-family: monospace; }

/* ================ CONTACT ================ */
.mo-contact { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x) clamp(80px, 10vw, 140px); }
.mo-contact__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .mo-contact__grid { grid-template-columns: 1fr; } }
.mo-contact__cards { display: flex; flex-direction: column; gap: 16px; }
.mo-contact-card {
  display: block; background: var(--blush-2); padding: 28px 32px;
  transition: background 0.2s ease;
}
.mo-contact-card:hover { background: var(--blush); }
.mo-contact-card__big { font-family: var(--serif); font-size: 36px; line-height: 1; margin: 14px 0 8px; }
.mo-contact-card__val { font-size: 15px; opacity: 0.78; margin-bottom: 14px; }
.mo-contact__form .mo-display { margin: 14px 0 32px; }

/* ================ MODAL ================ */
.mo-modal {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(20,18,16,0.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(12px, 4vw, 40px);
  animation: moFade 0.25s ease;
}
@keyframes moFade { from { opacity: 0; } to { opacity: 1; } }
.mo-modal__panel {
  background: var(--ivory); max-width: 1200px; width: 100%;
  max-height: 92vh; overflow-y: auto; position: relative;
  animation: moRise 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes moRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.mo-modal__close {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ivory);
  font-size: 18px;
  border: 1px solid var(--line);
}
.mo-modal__close:hover { background: var(--blush); }
.mo-modal__grid { display: grid; grid-template-columns: 1fr 1fr; }
.mo-modal__img { background: var(--bone); }
.mo-modal__img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.mo-modal__body { padding: clamp(32px, 4vw, 56px); }
.mo-modal__fabric {
  font-family: var(--serif); font-size: 18px; line-height: 1.5; color: var(--ink); opacity: 0.78;
  margin: 0 0 28px;
}
.mo-modal__price {
  font-family: var(--serif); font-size: 36px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.mo-modal__list { list-style: none; padding: 0; margin: 0 0 28px; }
.mo-modal__list li {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid rgba(35,31,28,0.08); font-size: 14px;
}
.mo-modal__list span:first-child { opacity: 0.55; }
.mo-modal__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.mo-modal__note { font-size: 13px; color: var(--muted); font-style: italic; font-family: var(--serif); font-size: 16px; }
@media (max-width: 820px) {
  .mo-modal__grid { grid-template-columns: 1fr; }
  .mo-modal__img img { aspect-ratio: 4/5; }
}

/* ================ FOOTER ================ */
.mo-foot {
  background: var(--ink); color: var(--ivory);
  padding: clamp(60px, 8vw, 100px) var(--pad-x) 28px;
  margin-top: 80px;
}
.mo-foot .mo-eyebrow { color: var(--blush); opacity: 0.7; margin-bottom: 16px; }
.mo-foot__top {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: clamp(28px, 3vw, 56px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(234,223,221,0.18);
}
.mo-foot__col { font-size: 13px; line-height: 1.9; }
.mo-foot__col a { display: block; opacity: 0.78; transition: opacity 0.2s; }
.mo-foot__col a:hover { opacity: 1; }
.mo-foot__col--brand { padding-right: 20px; }
.mo-foot__col--brand .mo-wordmark span:last-child { color: var(--ivory) !important; }
.mo-foot__col--brand .mo-wordmark span:first-child { background: var(--blush); color: var(--ink); }
.mo-foot__tag { font-family: var(--serif); font-size: 17px; line-height: 1.5; opacity: 0.78; margin: 20px 0 24px; max-width: 38ch; }
.mo-foot__social { display: flex; gap: 14px; align-items: center; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
.mo-foot__cta { color: var(--blush) !important; opacity: 1 !important; margin-top: 10px; font-weight: 500; }
.mo-foot__bottom {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px;
  padding-top: 28px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.55;
}
@media (max-width: 1000px) {
  .mo-foot__top { grid-template-columns: 1fr 1fr; }
  .mo-foot__col--brand { grid-column: 1 / -1; padding-right: 0; }
}
@media (max-width: 540px) {
  .mo-foot__top { grid-template-columns: 1fr; }
}

/* ================ FAB ================ */
.mo-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  background: var(--ink); color: var(--ivory);
  padding: 12px 20px 12px 16px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(20,18,16,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mo-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(20,18,16,0.35); }
.mo-fab svg { flex-shrink: 0; }
@media (max-width: 540px) { .mo-fab span { display: none; } .mo-fab { padding: 14px; } }

/* ================ PAGEWRAP (transition) ================ */
.mo-pagewrap { animation: moPageIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
@keyframes moPageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
