/* ============================================
   MARA GOODS — self-contained demo styles
   Concept build by PortaWork Ecommerce
   West African textiles · editorial · warm
   ============================================ */

/* "Indigo night gallery": deep indigo page, ivory text, gold accents.
   NOTE — the two core vars are intentionally inverted from their names:
   --ivory holds the DARK page color, --ink holds the LIGHT text color.
   This flips the whole theme while every component rule stays the same.
   Bands that used --ink as a background (craft, footer) invert to cream. */
:root {
  --ivory:      #1A2138;   /* page background: indigo night */
  --ivory-soft: #232C47;   /* raised surfaces */
  --ink:        #F2EBDC;   /* text: warm ivory */
  --ink-deep:   #FBF7EC;
  --terra:      #CE6A3A;
  --terra-soft: #DA7A48;
  --gold:       #D9A84E;
  --clay:       #C08A62;
  --mute:       #A69E8C;
  --line:       #35405F;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Work Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, select, input { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }

::selection { background: var(--terra); color: var(--ivory); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }


/* ============ TEXTILE PLACEHOLDERS ============
   Every image slot carries a woven CSS pattern underneath.
   Real photos drop in as <img class="m-photo"> and cover them. */

.m-ph {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.m-ph__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: rgba(250, 246, 239, 0.95);
  text-shadow: 0 1px 8px rgba(23, 32, 58, 0.45);
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border: 1px solid rgba(250, 246, 239, 0.5);
  border-radius: 2px;
  backdrop-filter: blur(2px);
}

/* NOTE: the woven texture lives inside each pattern's background
   stack (first two layers). It must NOT be a .m-ph::after — media
   boxes carry both .m-ph and .m-wm, and the ::after pseudo is
   shared, so a texture ::after would collide with the watermark
   plate and veil the whole photo. */

/* Kente: gold / green / black / red vertical bands */
.m-ph--kente {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg,
      #C99A3C 0 46px, #17203A 46px 58px, #2E6B4F 58px 96px,
      #B5502A 96px 134px, #17203A 134px 146px);
}

/* Adire: deep indigo with white resist dots */
.m-ph--adire {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 12px 12px, rgba(250,246,239,0.85) 2.5px, transparent 3.5px),
    radial-gradient(circle at 36px 36px, rgba(250,246,239,0.65) 2.5px, transparent 3.5px),
    #23304A;
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
}

/* Bogolan: clay ground, dark geometric crosshatch */
.m-ph--bogolan {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(45deg, rgba(43,28,16,0.5) 0 3px, transparent 3px 26px),
    repeating-linear-gradient(-45deg, rgba(43,28,16,0.5) 0 3px, transparent 3px 26px),
    #A9825A;
}

/* Aso Oke: magenta / terracotta / gold horizontal stripes */
.m-ph--asooke {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg,
      #8E3B5C 0 34px, #C99A3C 34px 42px, #B5502A 42px 78px, #23304A 78px 86px);
}

/* Neutral editorial: for story / journal slots */
.m-ph--story {
  background:
    radial-gradient(at 30% 25%, rgba(201,154,60,0.35) 0%, transparent 55%),
    linear-gradient(140deg, #8A4A2E 0%, #23304A 100%);
}

.m-ph--loom {
  background:
    repeating-linear-gradient(0deg, rgba(250,246,239,0.08) 0 2px, transparent 2px 12px),
    linear-gradient(160deg, #23304A 0%, #17203A 70%);
}


/* ============ PHOTO OVERLAYS + WATERMARK TREATMENT ============ */

.m-photo {
  position: absolute;
  top: 0;
  left: 0;
  /* zoom-crop past the AI watermark zone (bottom-right of source):
     oversized box anchored top-left, cropped by overflow — sizing
     instead of transform:scale, which rasterizes blurry in Safari */
  width: 118%;
  height: 118%;
  object-fit: cover;
  z-index: 1;
  transform-origin: top left;
}

.m-wm { position: relative; }

.m-wm::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 48%;
  height: 30%;
  min-width: 170px;
  min-height: 84px;
  background: linear-gradient(315deg, rgba(23, 32, 58, 0.94) 0%, rgba(23, 32, 58, 0.6) 38%, transparent 70%);
  pointer-events: none;
}

.m-wm::after {
  content: attr(data-wm);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(23, 32, 58, 0.88);
  color: var(--ivory);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 9px 18px 10px 20px;
  border-radius: 12px 0 0 0;
  border-top: 1px solid rgba(201, 154, 60, 0.55);
  border-left: 1px solid rgba(201, 154, 60, 0.55);
  backdrop-filter: blur(4px);
  pointer-events: none;
}


/* ============ HEADER ============ */

.m-topbar {
  background: var(--terra);
  color: #FBF7EC;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 9px 16px;
}

.m-topbar strong { color: #FFDF9E; font-weight: 600; }

.m-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 33, 56, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.m-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.m-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.m-brand em { font-style: italic; font-weight: 500; color: var(--terra); }

.m-nav { display: flex; gap: 34px; justify-content: center; }

.m-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 3px;
  position: relative;
}

.m-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.m-nav a:hover::after { width: 100%; }

.m-header__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.m-currency {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 3px;
  padding: 7px 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--ink);
}

.m-icon-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background 0.2s;
  position: relative;
}

.m-icon-btn:hover { background: var(--ivory-soft); }

.m-cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  background: var(--terra);
  color: var(--ivory);
  border-radius: 999px;
  padding: 0 5px;
  box-shadow: 0 0 0 2px var(--ivory);
  pointer-events: none;
}

@keyframes badge-pulse {
  0% { transform: scale(1); } 40% { transform: scale(1.45); } 100% { transform: scale(1); }
}
.m-cart-count--pulse { animation: badge-pulse 0.45s var(--ease); }

.m-icon-btn.m-signed-in::after {
  content: '';
  position: absolute;
  top: 2px; right: 2px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--ivory);
}


/* ============ HERO ============ */

.m-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 32px 90px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.m-hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.m-hero__eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--gold); }

.m-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}

.m-hero__title em { font-style: italic; font-weight: 500; color: var(--terra); }

.m-hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--mute);
  max-width: 46ch;
  margin-bottom: 34px;
}

.m-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.m-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.m-btn--primary { background: var(--terra); color: var(--ivory); }
.m-btn--primary:hover { background: var(--terra-soft); transform: translateY(-1px); }

.m-btn--ghost { border: 1px solid var(--ink); color: var(--ink); }
.m-btn--ghost:hover { background: var(--ink); color: var(--ivory); }

.m-hero__media {
  aspect-ratio: 4 / 4.6;
  border-radius: 4px 80px 4px 4px;
}

.m-hero__note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--mute);
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-hero__note::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }


/* ============ VALUES STRIP ============ */

.m-values {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory-soft);
}

.m-values__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.m-values__item {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-weight: 500;
}

.m-values__item strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--terra);
  margin-bottom: 2px;
}


/* ============ SECTIONS ============ */

.m-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 32px;
}

.m-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.m-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 10px;
}

.m-section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  color: var(--ink);
}

.m-section__title em { font-style: italic; font-weight: 500; color: var(--terra); }

.m-section__aside {
  font-size: 15px;
  color: var(--mute);
  max-width: 38ch;
  line-height: 1.6;
}


/* ============ PRODUCTS ============ */

.m-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

@media (max-width: 1080px) { .m-products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .m-products { grid-template-columns: 1fr; } }

.m-product {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--ease);
}

.m-product:hover { transform: translateY(-4px); }

.m-product__media {
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  transition: box-shadow 0.4s var(--ease);
}

.m-product:hover .m-product__media {
  box-shadow: 0 22px 44px -22px rgba(35, 48, 74, 0.4);
}

.m-product:hover .m-photo { transform: scale(1.035); }
.m-photo { transition: transform 0.6s var(--ease); }

.m-product__origin {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.m-product__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.2;
  color: var(--ink);
}

.m-product__desc { font-size: 13.5px; color: var(--mute); line-height: 1.55; }

.m-product__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 2px;
  border-top: 1px solid var(--line);
}

.m-product__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
}

.m-product__add {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.m-product__add:hover { color: var(--gold); border-color: var(--gold); }


/* ============ STORY SPLIT ============ */

.m-story-band { background: var(--ivory-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.m-story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

@media (max-width: 860px) { .m-story { grid-template-columns: 1fr; gap: 44px; } }

.m-story__media { aspect-ratio: 4 / 5; border-radius: 3px 3px 3px 64px; }

.m-story__copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 22px;
}

.m-story__copy h2 em { font-style: italic; font-weight: 500; color: var(--terra); }

.m-story__copy p { font-size: 16px; line-height: 1.75; color: var(--mute); max-width: 56ch; }
.m-story__copy p + p { margin-top: 16px; }

.m-story__sig {
  margin-top: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
}


/* ============ CRAFT BAND (dark) ============ */

.m-craft {
  background: var(--ink);
  color: var(--ivory);
}

.m-craft .m-section__title { color: var(--ivory); }
.m-craft .m-eyebrow { color: var(--gold); }

.m-craft__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 860px) { .m-craft__grid { grid-template-columns: 1fr; } }

.m-craft__step { border-top: 1px solid rgba(201, 154, 60, 0.4); padding-top: 22px; }

.m-craft__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.m-craft__step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 10px;
}

.m-craft__step p { font-size: 15px; line-height: 1.7; color: rgba(26, 33, 56, 0.78); }


/* ============ JOURNAL ============ */

.m-journal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 760px) { .m-journal { grid-template-columns: 1fr; } }

.m-article { display: flex; flex-direction: column; gap: 16px; transition: transform 0.4s var(--ease); }
.m-article:hover { transform: translateY(-3px); }
.m-article:hover .m-photo { transform: scale(1.035); }

.m-article__media { aspect-ratio: 16 / 10; border-radius: 3px; }

.m-article__date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.m-article__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.2;
  color: var(--ink);
}

.m-article__excerpt { font-size: 15px; color: var(--mute); line-height: 1.6; }

.m-article__more {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  width: fit-content;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.m-article__more:hover { color: var(--gold); border-color: var(--gold); }


/* ============ NEWSLETTER ============ */

.m-news {
  background:
    repeating-linear-gradient(90deg, rgba(217,168,78,0.14) 0 2px, transparent 2px 42px),
    var(--terra);
  color: #FBF7EC;
}

.m-news__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 88px 32px;
  text-align: center;
}

.m-news__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  margin-bottom: 14px;
}

.m-news__title em { font-style: italic; font-weight: 500; color: #F5DCA8; }

.m-news__sub { font-size: 16px; opacity: 0.9; margin-bottom: 30px; }

.m-news__form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}

@media (max-width: 520px) { .m-news__form { flex-direction: column; } }

.m-news__input {
  flex: 1;
  padding: 15px 18px;
  border: 1px solid rgba(251, 247, 236, 0.4);
  background: rgba(251, 247, 236, 0.12);
  border-radius: 2px;
  color: #FBF7EC;
  font-size: 15px;
}

.m-news__input::placeholder { color: rgba(251, 247, 236, 0.65); }
.m-news__input:focus { outline: none; border-color: #FBF7EC; }

.m-news__btn {
  padding: 15px 28px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s;
}

.m-news__btn:hover { background: var(--ink-deep); }


/* ============ FOOTER ============ */

.m-footer { background: var(--ink); color: var(--ivory); padding: 76px 32px 34px; }

.m-footer__inner { max-width: var(--container); margin: 0 auto; }

.m-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(26, 33, 56, 0.16);
}

@media (max-width: 880px) { .m-footer__top { grid-template-columns: 1fr 1fr; row-gap: 38px; } }
@media (max-width: 540px) { .m-footer__top { grid-template-columns: 1fr; } }

.m-footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 12px;
}

.m-footer__brand em { font-style: italic; font-weight: 500; color: var(--gold); }

.m-footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(26, 33, 56, 0.72);
  max-width: 30ch;
}

.m-footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.m-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.m-footer__col a {
  font-size: 14px;
  color: var(--ivory);
  opacity: 0.78;
  transition: opacity 0.2s, color 0.2s;
}

.m-footer__col a:hover { opacity: 1; color: var(--gold); }

.m-footer__bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  opacity: 0.6;
}

.m-footer__credit { letter-spacing: 0.14em; text-transform: uppercase; font-size: 11px; }
.m-footer__credit a { color: var(--gold); border-bottom: 1px solid rgba(201,154,60,0.5); }


/* ============ DEMO RIBBON ============ */

.m-demo-ribbon {
  position: fixed;
  bottom: 14px;
  left: 14px;
  z-index: 100;
  background: var(--ink);
  color: var(--ivory);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--clay);
  box-shadow: 0 6px 20px -6px rgba(0,0,0,0.3);
}

.m-demo-ribbon::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }


/* ============ PDP ============ */

.m-pdp { max-width: var(--container); margin: 0 auto; padding: 56px 32px 110px; }

.m-breadcrumb {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 36px;
}

.m-breadcrumb a:hover { color: var(--terra); }
.m-breadcrumb span { color: var(--ink); }

.m-pdp__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) { .m-pdp__grid { grid-template-columns: 1fr; gap: 40px; } }

.m-pdp__media { aspect-ratio: 4 / 5; border-radius: 3px; }

.m-pdp__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.m-pdp__thumb {
  aspect-ratio: 1;
  border-radius: 3px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  padding: 0;
  transition: border-color 0.2s, transform 0.2s;
}

.m-pdp__thumb:hover { border-color: var(--gold); transform: translateY(-2px); }
.m-pdp__thumb--active { border-color: var(--ink); border-width: 2px; }

.m-pdp__thumb .m-ph { position: absolute; inset: 0; }
.m-pdp__thumb .m-ph__label { display: none; }

/* Thumbs preview their actual image (oversized for watermark crop) */
.m-pdp__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 118%;
  height: 118%;
  object-fit: cover;
}

.m-pdp__info { display: flex; flex-direction: column; gap: 18px; }

.m-pdp__origin {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.m-pdp__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.06;
  color: var(--ink);
}

.m-pdp__title em { font-style: italic; font-weight: 500; color: var(--terra); }

.m-pdp__price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.m-pdp__price { font-family: var(--font-display); font-weight: 600; font-size: 30px; color: var(--ink); }
.m-pdp__unit { font-size: 13px; color: var(--mute); }

.m-pdp__opts { display: flex; flex-direction: column; gap: 8px; }

.m-pdp__opts-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
}

.m-pdp__options { display: flex; gap: 10px; flex-wrap: wrap; }

.m-pdp__option {
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  transition: all 0.2s var(--ease);
}

.m-pdp__option:hover { border-color: var(--ink); }
.m-pdp__option[aria-pressed="true"] { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.m-pdp__actions { display: flex; gap: 12px; margin-top: 10px; }

.m-pdp__add-btn {
  flex: 1;
  padding: 17px 28px;
  background: var(--terra);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s;
}

.m-pdp__add-btn:hover { background: var(--terra-soft); transform: translateY(-1px); }

.m-pdp__fav {
  width: 54px;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: border-color 0.2s, color 0.2s;
}

.m-pdp__fav:hover, .m-pdp__fav--on { border-color: var(--terra); color: var(--terra); }
.m-pdp__fav--on svg { fill: var(--terra); }

.m-pdp__meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.m-pdp__meta li { display: grid; grid-template-columns: 130px 1fr; gap: 16px; font-size: 14px; color: var(--mute); }

.m-pdp__meta strong {
  font-weight: 600;
  color: var(--ink);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-top: 3px;
}


/* ============ MODALS / DRAWER / TOAST (shared patterns) ============ */

.m-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: start center;
  padding: 12vh 20px 40px;
  background: rgba(23, 32, 58, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  overflow-y: auto;
}

.m-modal--open { opacity: 1; visibility: visible; }
body.m-modal-lock { overflow: hidden; }

.m-modal__panel {
  width: min(520px, 100%);
  background: var(--ivory);
  border-radius: 4px;
  padding: 26px 28px 30px;
  box-shadow: 0 30px 80px -30px rgba(23, 32, 58, 0.55);
  transform: translateY(14px);
  transition: transform 0.35s var(--ease);
}

.m-modal--open .m-modal__panel { transform: translateY(0); }

.m-modal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.m-modal__title { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--ink); }

.m-modal__close {
  font-size: 28px;
  line-height: 1;
  color: var(--mute);
  width: 36px; height: 36px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.m-modal__close:hover { background: var(--ivory-soft); color: var(--ink); }

.m-input {
  width: 100%;
  font-size: 15px;
  color: var(--ink);
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 13px 15px;
  transition: border-color 0.2s;
}

.m-input::placeholder { color: var(--mute); }

.m-input:focus { outline: none; border-color: var(--ink); }

.m-submit {
  padding: 15px;
  background: var(--terra);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s;
  width: 100%;
}

.m-submit:hover { background: var(--terra-soft); }

.m-note { font-size: 11px; letter-spacing: 0.06em; color: var(--mute); text-align: center; }

/* search */
.m-search__results { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; max-height: 46vh; overflow-y: auto; }
.m-search__hint { font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.m-search__none { font-size: 14px; color: var(--mute); padding: 12px 0; }

.m-search__row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.m-thumbbox { width: 52px; height: 64px; border-radius: 2px; overflow: hidden; position: relative; }
.m-thumbbox .m-ph { position: absolute; inset: 0; }
.m-thumbbox .m-ph__label { display: none; }

.m-search__row-name { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); line-height: 1.15; }
.m-search__row-origin { font-size: 12px; color: var(--mute); margin-top: 2px; }
.m-search__row-actions { display: flex; align-items: center; gap: 10px; }

.m-search__row-view {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--ink);
}
.m-search__row-view:hover { color: var(--terra); border-color: var(--terra); }

.m-search__row-add {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--ink); color: var(--ivory);
  padding: 8px 16px; border-radius: 2px; transition: background 0.2s;
}
.m-search__row-add:hover { background: var(--terra); }

/* account */
.m-account__form { display: flex; flex-direction: column; gap: 10px; }
.m-account__email { font-size: 14px; color: var(--mute); margin-top: -10px; margin-bottom: 18px; }
.m-account__sub { font-size: 11px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.m-account__orders { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.m-account__order {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 14px;
  align-items: baseline;
  font-size: 13px;
  color: var(--mute);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.m-account__order span:first-child { font-weight: 700; color: var(--ink); }
.m-account__order strong { font-family: var(--font-display); font-size: 16px; color: var(--ink); }
.m-account__empty { font-size: 14px; color: var(--mute); padding: 8px 0 4px; }

.m-account__signout {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  transition: border-color 0.2s, color 0.2s;
}

.m-account__signout:hover { border-color: var(--terra); color: var(--terra); }

/* cart drawer */
.m-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(23, 32, 58, 0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  z-index: 200;
}

.m-cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--ivory);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  box-shadow: -18px 0 50px -20px rgba(23, 32, 58, 0.4);
}

body.m-cart-open .m-cart-overlay { opacity: 1; visibility: visible; }
body.m-cart-open .m-cart-drawer { transform: translateX(0); }
body.m-cart-open { overflow: hidden; }

.m-cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.m-cart-drawer__title { font-family: var(--font-display); font-weight: 600; font-size: 25px; color: var(--ink); }

.m-cart-drawer__close {
  font-size: 30px; line-height: 1; color: var(--mute);
  width: 38px; height: 38px; border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.m-cart-drawer__close:hover { background: var(--ivory-soft); color: var(--ink); }

.m-cart-drawer__shipbar { padding: 16px 26px 0; }
.m-cart-drawer__shipbar-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--clay); margin-bottom: 8px; }
.m-cart-drawer__shipbar-track { height: 4px; background: var(--line); border-radius: 999px; overflow: hidden; }
.m-cart-drawer__shipbar-fill { height: 100%; width: 0%; background: var(--gold); border-radius: 999px; transition: width 0.5s var(--ease); }

.m-cart-drawer__items { flex: 1; overflow-y: auto; padding: 18px 26px; display: flex; flex-direction: column; gap: 18px; }

.m-cart-drawer__empty { text-align: center; padding: 60px 0; color: var(--mute); display: flex; flex-direction: column; gap: 14px; }
.m-cart-drawer__empty-link { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.m-cart-drawer__empty-link:hover { color: var(--terra); }

.m-cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.m-cart-item .m-thumbbox { width: 64px; height: 80px; }

.m-cart-item__name { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); line-height: 1.2; }
.m-cart-item__opts { font-size: 12px; color: var(--mute); margin-top: 2px; }
.m-cart-item__row { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }

.m-cart-item__qty { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--line); border-radius: 2px; }
.m-cart-item__qty-btn { width: 28px; height: 28px; font-size: 16px; color: var(--ink); transition: background 0.15s; }
.m-cart-item__qty-btn:hover { background: var(--ivory-soft); }
.m-cart-item__qty-val { min-width: 26px; text-align: center; font-size: 13px; font-weight: 700; }

.m-cart-item__price { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); }

.m-cart-item__remove { font-size: 20px; color: var(--mute); width: 28px; height: 28px; border-radius: 50%; transition: color 0.15s, background 0.15s; }
.m-cart-item__remove:hover { color: var(--terra); background: var(--ivory-soft); }

.m-cart-drawer__foot { padding: 20px 26px 26px; border-top: 1px solid var(--line); background: var(--ivory-soft); }
.m-cart-drawer__subtotal { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: var(--mute); }
.m-cart-drawer__subtotal strong { font-family: var(--font-display); font-weight: 600; font-size: 25px; color: var(--ink); }
.m-cart-drawer__shipnote { font-size: 12px; color: var(--mute); margin-top: 4px; }

.m-cart-drawer__checkout {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding: 16px;
  background: var(--terra);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, opacity 0.25s;
}

.m-cart-drawer__checkout:hover { background: var(--terra-soft); }
.m-cart-drawer__checkout--disabled { opacity: 0.4; pointer-events: none; }
.m-cart-drawer__demo-note { text-align: center; font-size: 11px; letter-spacing: 0.08em; color: var(--mute); margin-top: 10px; }

/* toast */
.m-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 16px);
  background: var(--ink);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border-radius: 999px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 300;
  box-shadow: 0 10px 30px -10px rgba(23, 32, 58, 0.45);
}

.m-toast--show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }


/* ============ CHECKOUT ============ */

.m-checkout { max-width: 1100px; margin: 0 auto; padding: 48px 32px 110px; }

.m-checkout__main { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .m-checkout__main { grid-template-columns: 1fr; } .m-checkout__summary { order: -1; } }

.m-checkout__form h2 { font-family: var(--font-display); font-weight: 600; font-size: 23px; color: var(--ink); margin: 28px 0 14px; }
.m-checkout__form h2:first-child { margin-top: 0; }

.m-checkout__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.m-checkout__grid .full { grid-column: 1 / -1; }

.m-checkout__pay-note {
  margin-top: 10px;
  padding: 14px 16px;
  background: var(--ivory-soft);
  border: 1px dashed var(--gold);
  border-radius: 3px;
  font-size: 13px;
  color: var(--clay);
  line-height: 1.5;
}

.m-checkout__place {
  width: 100%;
  margin-top: 22px;
  padding: 17px;
  background: var(--terra);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s;
}

.m-checkout__place:hover { background: var(--terra-soft); }

.m-checkout__summary {
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 26px;
  position: sticky;
  top: 100px;
}

.m-checkout__summary h2 { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--ink); margin-bottom: 18px; }

.m-checkout__lines { display: flex; flex-direction: column; gap: 12px; }

.m-checkout__line { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; font-size: 14px; color: var(--ink); align-items: baseline; }
.m-checkout__line-qty { color: var(--mute); font-weight: 700; font-size: 12px; }
.m-checkout__line-name em { display: block; font-style: normal; font-size: 12px; color: var(--mute); }
.m-checkout__line-price { font-weight: 600; }

.m-checkout__empty { font-size: 14px; color: var(--mute); }
.m-checkout__empty a { color: var(--ink); font-weight: 600; }

.m-checkout__totals { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.m-checkout__total-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--mute); }
.m-checkout__total-row--grand { font-size: 16px; color: var(--ink); font-weight: 700; padding-top: 8px; }
.m-checkout__total-row--grand span:last-child { font-family: var(--font-display); font-weight: 600; font-size: 23px; }

.m-checkout__done { text-align: center; padding: 90px 20px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.m-checkout__done-mark { width: 72px; height: 72px; border-radius: 50%; border: 1.5px solid var(--gold); display: grid; place-items: center; font-size: 30px; color: var(--gold); }
.m-checkout__done h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(32px, 4vw, 46px); color: var(--ink); }
.m-checkout__done h1 em { font-style: italic; font-weight: 500; color: var(--terra); }
.m-checkout__done p { color: var(--mute); max-width: 46ch; line-height: 1.6; }
.m-checkout__done-note { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); }

.m-checkout__done-link {
  margin-top: 8px;
  display: inline-block;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s;
}

.m-checkout__done-link:hover { background: var(--terra); }


/* ============ JOURNAL / POST PAGES ============ */

.m-post { max-width: 760px; margin: 0 auto; padding: 56px 24px 110px; }

.m-post__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }

.m-post__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 18px;
}

.m-post__title em { font-style: italic; font-weight: 500; color: var(--terra); }

.m-post__lede { font-size: 19px; line-height: 1.6; color: var(--mute); margin-bottom: 36px; }

.m-post__hero { border-radius: 4px; overflow: hidden; margin-bottom: 44px; aspect-ratio: 16 / 9; }

.m-post__body { display: flex; flex-direction: column; gap: 22px; }
.m-post__body p { font-size: 17px; line-height: 1.75; color: var(--ink); }
.m-post__body h2 { font-family: var(--font-display); font-weight: 600; font-size: 28px; color: var(--ink); margin-top: 18px; }

.m-post__body blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.35;
  color: var(--terra);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 14px 0;
}

.m-post__body ul { padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.m-post__body li { font-size: 16px; line-height: 1.6; }
.m-post__body a { color: var(--terra); font-weight: 600; }
.m-post__body a:hover { color: var(--gold); }

.m-post__footer {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.m-post__back { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.m-post__back:hover { color: var(--terra); border-color: var(--terra); }

.m-post__next { text-align: right; }
.m-post__next-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--mute); margin-bottom: 4px; }
.m-post__next a { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 19px; color: var(--terra); }
.m-post__next a:hover { color: var(--gold); }


/* ============ HELP PAGE ============ */

.m-help { max-width: 760px; margin: 0 auto; padding: 56px 24px 110px; }

.m-help__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(34px, 5vw, 52px); color: var(--ink); margin-bottom: 10px; }
.m-help__title em { font-style: italic; font-weight: 500; color: var(--terra); }
.m-help__lede { font-size: 17px; color: var(--mute); margin-bottom: 48px; }

.m-help__section { padding: 34px 0; border-top: 1px solid var(--line); scroll-margin-top: 110px; }
.m-help__section h2 { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--ink); margin-bottom: 12px; }
.m-help__section p { font-size: 16px; line-height: 1.7; color: var(--mute); max-width: 62ch; }
.m-help__section p + p { margin-top: 12px; }
.m-help__section a { color: var(--terra); font-weight: 600; }
.m-help__section a:hover { color: var(--gold); }


/* ============ SHOP PAGE ============ */

.m-shop { max-width: var(--container); margin: 0 auto; padding: 56px 32px 110px; }

.m-shop__head { margin-bottom: 36px; }

.m-shop__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
  color: var(--ink);
  margin-bottom: 10px;
}

.m-shop__title em { font-style: italic; font-weight: 500; color: var(--terra); }

.m-shop__lede { font-size: 16px; color: var(--mute); max-width: 60ch; }

.m-shop__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.m-shop__search { max-width: 320px; }

.m-shop__chips { display: flex; flex-wrap: wrap; gap: 8px; }

.m-chip {
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  transition: all 0.2s var(--ease);
}

.m-chip:hover { border-color: var(--gold); }
.m-chip--on { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.m-shop__count {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 26px;
}

.m-products--shop { grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1020px) { .m-products--shop { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .m-products--shop { grid-template-columns: 1fr; } }

.m-shop__none {
  grid-column: 1 / -1;
  padding: 60px 0;
  text-align: center;
  font-size: 16px;
  color: var(--mute);
}

.m-search__all {
  display: block;
  margin-top: 6px;
  padding-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
}

.m-search__all:hover { color: var(--gold); }


/* ============ RESPONSIVE ============ */

@media (max-width: 900px) {
  .m-hero { grid-template-columns: 1fr; gap: 44px; padding: 48px 24px 70px; }
  .m-hero__media { max-width: 460px; }
}

@media (max-width: 760px) {
  .m-header__inner { grid-template-columns: 1fr auto; padding: 14px 20px; }
  .m-nav { display: none; }
  .m-section { padding: 72px 20px; }
  .m-values__inner { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .m-news__inner { padding: 64px 20px; }
  .m-footer { padding: 60px 20px 30px; }
}
