/* =========================================================================
   Arteolin — melegítő kozmetikai gél
   Fingerprint: dom_hierarchy=deep-nested · css_naming=bem · css_units=clamp
   css_variables=none (hardcoded) · css_methodology=utility-first (helpers)
   css_architecture=scoped (grouped per component) · spacing_rhythm=tight
   color_sections=streaming-dark-orange · typography=serif-editorial
   ========================================================================= */

/* ---------- 1. RESET (css_reset: opinionated) --------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #f1efe9;
  background: #141414;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #ffffff;
}
a { color: #f47521; text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; border: none; background: none; font: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- 2. UTILITY HELPERS (css_methodology: utility-first) --------- */
.u-flex { display: flex; }
.u-items-center { align-items: center; }
.u-justify-between { justify-content: space-between; }
.u-gap-sm { gap: clamp(0.5rem, 1vw, 0.75rem); }
.u-gap-md { gap: clamp(0.75rem, 2vw, 1.5rem); }
.u-text-center { text-align: center; }
.u-mt-lg { margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.u-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- 3. LAYOUT SCAFFOLD (dom_hierarchy: deep-nested) ------------- */
.mg-root, .mg-wrapper, .mg-page { display: block; }
.mg-container {
  width: clamp(320px, 92%, 1200px);
  margin: 0 auto;
}
.mg-main, .mg-main__wrapper, .mg-main__content, .mg-header__wrapper, .mg-footer__wrapper, .mg-footer__container { display: block; }

/* layout_strategy: display-table — used for vertical centering inside the
   hero content column and the order-form intro block */
.mg-vcenter { display: table; width: 100%; }
.mg-vcenter__row { display: table-row; }
.mg-vcenter__cell { display: table-cell; vertical-align: middle; }

/* ---------- 4. SECTION BASE (spacing_rhythm: tight) ---------------------- */
.mg-section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: #1a1a1a;
}
.mg-section:nth-of-type(odd) { background: #212121; }
.mg-section__wrapper, .mg-section__container { display: block; }
.mg-section__header { max-width: 720px; margin: 0 auto clamp(1.75rem, 4vw, 2.5rem); text-align: center; }
.mg-section__label {
  display: inline-block;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f47521;
  font-weight: 600;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}
.mg-section__title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: clamp(0.6rem, 1.5vw, 1rem); }
.mg-section__lede { font-size: clamp(1rem, 1.4vw, 1.15rem); color: #c9c6bd; }

/* ---------- 5. ZIGZAG DIVIDER (section_divider) -------------------------- */
.mg-divider {
  height: 22px;
  background: #1a1a1a;
  -webkit-mask: linear-gradient(135deg, #000 25%, transparent 0) -16px 0/32px 32px repeat-x;
  mask: linear-gradient(135deg, #000 25%, transparent 0) -16px 0/32px 32px repeat-x;
}

/* ---------- 6. HEADER / NAV (navigation_type: hamburger-menu) ----------- */
.mg-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mg-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.75rem, 2vw, 1.1rem) 0;
}
.mg-header__brand { display: flex; align-items: center; gap: 0.6rem; }
.mg-header__brand img.mg-logo { height: 2.1rem; width: auto; }
.mg-header__brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}

/* ---------- mobile-menu module (variant: fullscreen-overlay) ------------ */
[data-mm-header] { --mm-bg: #141414; --mm-text: #ffffff; --mm-primary: #f47521; --mm-overlay-bg: rgba(0,0,0,0.75); --mm-transition: 0.3s ease; }
[data-mm-header] { position: relative; }
[data-mm-toggle] { display: flex; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
[data-mm-toggle] span { display: block; width: 24px; height: 2px; background: var(--mm-text); transition: var(--mm-transition); border-radius: 2px; }
[data-mm-toggle]:hover span { background: var(--mm-primary); }
[data-mm-menu] {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh;
  background: var(--mm-bg);
  opacity: 0; visibility: hidden;
  transition: opacity var(--mm-transition), visibility var(--mm-transition);
  z-index: 1100;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 24px;
}
[data-mm-menu].mm-open { opacity: 1; visibility: visible; }
[data-mm-menu] ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; gap: 8px; }
[data-mm-menu] ul li a {
  display: block;
  padding: 12px 24px;
  color: var(--mm-text);
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  transition: color var(--mm-transition);
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.01em;
}
[data-mm-menu] ul li a:hover { color: var(--mm-primary); }
[data-mm-close] {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none;
  font-size: 32px; line-height: 1;
  cursor: pointer;
  color: var(--mm-text);
  padding: 12px 16px;
  min-width: 44px; min-height: 44px;
  z-index: 1101;
}
[data-mm-close]:hover { color: var(--mm-primary); }
[data-mm-menu] ul li .mg-header__cta-link { color: #f47521; font-weight: 700; }
@media (min-width: 768px) {
  [data-mm-toggle] { display: none !important; }
  [data-mm-menu] {
    position: static !important; width: auto !important; height: auto !important;
    background: transparent !important; opacity: 1 !important; visibility: visible !important;
    padding: 0 !important; flex-direction: row !important; justify-content: flex-end !important;
  }
  [data-mm-menu] ul { flex-direction: row; gap: 0; align-items: center; }
  [data-mm-close] { display: none !important; }
  [data-mm-menu] ul li a {
    padding: 0.5rem 1rem;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Source Sans 3', sans-serif;
    color: #e7e4da;
    transition: color 0.2s ease;
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-mm-menu], [data-mm-toggle] span { transition: none !important; }
}

/* ---------- 7. BUTTONS (button_style: dot-indicator; animation: micro) -- */
.mg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.85rem, 1.6vw, 1rem) clamp(1.6rem, 3vw, 2.1rem);
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.mg-btn:active { transform: scale(0.96); }
.mg-btn--primary {
  background: #f47521;
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(244, 117, 33, 0.35);
}
.mg-btn--primary::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  margin-right: 0.65rem;
}
.mg-btn--primary:hover { background: #ff8533; box-shadow: 0 8px 26px rgba(244, 117, 33, 0.45); }
.mg-btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.mg-btn--ghost:hover { border-color: #f47521; color: #f47521; }
.mg-btn--block { width: 100%; }

/* ---------- 8. HERO (image_strategy: parallax-effect; hero_design: search-hero) */
.mg-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  text-align: center;
  background-image: linear-gradient(180deg, rgba(20,20,20,0.55), rgba(20,20,20,0.92)), url('/assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}
.mg-hero__inner { display: table; width: 100%; }
.mg-hero__row { display: table-row; }
.mg-hero__cell { display: table-cell; vertical-align: middle; }
.mg-hero__content { max-width: 760px; margin: 0 auto; }
.mg-hero__eyebrow {
  display: inline-block;
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffb27a;
  font-weight: 600;
  margin-bottom: clamp(0.9rem, 2vw, 1.2rem);
}
.mg-hero__title {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
}
.mg-hero__subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: #d9d6cc;
  max-width: 560px;
  margin: 0 auto clamp(1.75rem, 3vw, 2.25rem);
}

/* quick-order pill (search-hero language, repurposed for phone capture) */
.mg-quickorder {
  display: flex;
  max-width: 460px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
  border-radius: 999px;
  overflow: hidden;
}
.mg-quickorder__input {
  flex: 1;
  padding: clamp(0.85rem, 1.6vw, 1rem) clamp(1.1rem, 2vw, 1.4rem);
  border: none;
  font-size: clamp(0.95rem, 1.2vw, 1rem);
  background: #ffffff;
  color: #1a1a1a;
}
.mg-quickorder__input:focus { outline: none; box-shadow: inset 0 0 0 3px rgba(244,117,33,0.5); }
.mg-quickorder__btn {
  background: #f47521;
  color: #fff;
  font-weight: 700;
  padding: 0 clamp(1.3rem, 2.5vw, 1.75rem);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: background 0.2s ease, transform 0.2s ease;
}
.mg-quickorder__btn:hover { background: #ff8533; }
.mg-quickorder__btn:active { transform: scale(0.96); }

.mg-hero__rating { display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin-bottom: clamp(1.5rem, 3vw, 2rem); }
.mg-hero__stars { color: #ffb400; font-size: 1.1rem; letter-spacing: 0.1em; }
.mg-hero__rating-text { color: #c9c6bd; font-size: 0.9rem; }

.mg-hero__price { display: flex; justify-content: center; align-items: baseline; gap: 0.85rem; margin-bottom: clamp(1.5rem, 3vw, 2rem); }
.mg-hero__price-old { color: #9a9a9a; text-decoration: line-through; font-size: 1.15rem; }
.mg-hero__price-new { color: #ffffff; font-size: clamp(1.7rem, 3vw, 2.1rem); font-weight: 700; font-family: 'Playfair Display', serif; }
.mg-hero__price-badge { background: rgba(244,117,33,0.18); color: #ffb27a; font-size: 0.8rem; font-weight: 700; padding: 0.3rem 0.7rem; border-radius: 999px; }

.mg-hero__product {
  max-width: 210px;
  margin: 0 auto clamp(1.75rem, 3vw, 2.25rem);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: clamp(0.9rem, 2vw, 1.2rem);
  box-shadow: 0 20px 55px rgba(0,0,0,0.45);
}
.mg-hero__product img { border-radius: 12px; }

/* trust badges — stats-inline (visual_flow) */
.mg-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}
.mg-badges__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.82rem, 1vw, 0.9rem);
  color: #e7e4da;
}
.mg-badges__icon { color: #f47521; font-size: 1.1rem; }

/* ---------- 9. PROBLEM SECTION ------------------------------------------ */
.mg-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto;
}
.mg-why__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: clamp(1.1rem, 2vw, 1.4rem);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.mg-why__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(244,117,33,0.15);
  color: #f47521;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.mg-why__text { color: #d9d6cc; font-size: clamp(0.92rem, 1.1vw, 1rem); }

/* ---------- 10. BENEFITS — cards-masonry (visual_flow) ------------------ */
.mg-perks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(230px, 30vw, 300px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
/* card_style: flat-bordered, adapted to dark theme */
.mg-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: clamp(1.4rem, 2.5vw, 1.75rem);
  background: #1e1e1e;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.mg-card:hover { border-color: rgba(244,117,33,0.5); transform: translateY(-3px); }
.mg-card__icon { font-size: 1.8rem; margin-bottom: 0.85rem; }
.mg-card__title { font-size: clamp(1.05rem, 1.4vw, 1.2rem); margin-bottom: 0.5rem; }
.mg-card__text { color: #c2bfb6; font-size: clamp(0.9rem, 1.1vw, 0.96rem); }

/* ---------- 11. COMPOSITION ---------------------------------------------- */
.mg-inside__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.mg-ingredient {
  display: flex;
  gap: 0.9rem;
  padding: clamp(0.9rem, 1.6vw, 1.1rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mg-ingredient:last-child { border-bottom: none; }
.mg-ingredient__dot { flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: #f47521; margin-top: 0.5rem; }
.mg-ingredient__name { font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.mg-ingredient__role { color: #c2bfb6; font-size: 0.92rem; }
.mg-usage-box {
  background: rgba(244,117,33,0.08);
  border: 1px solid rgba(244,117,33,0.25);
  border-radius: 14px;
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
}
.mg-usage-box__title { color: #ffb27a; font-size: 1rem; margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; }
.mg-usage-box__format { color: #fff; font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: 0.5rem; }
.mg-usage-box__dose { color: #d9d6cc; font-size: 0.95rem; }

/* ---------- 12. SOCIAL PROOF ---------------------------------------------- */
.mg-voices__stats {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
  text-align: center;
}
.mg-voices__stat-num { font-family: 'Playfair Display', serif; font-size: clamp(2.1rem, 4vw, 2.8rem); color: #f47521; font-weight: 700; }
.mg-voices__stat-label { color: #c2bfb6; font-size: 0.88rem; max-width: 200px; }
.mg-voices__note { text-align: center; color: #857f72; font-size: 0.78rem; margin-top: -1.25rem; margin-bottom: 2rem; }
.mg-voices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(240px, 32vw, 320px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.mg-testimonial {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: clamp(1.3rem, 2.2vw, 1.6rem);
}
.mg-testimonial__stars { color: #ffb400; font-size: 0.9rem; margin-bottom: 0.65rem; letter-spacing: 0.08em; }
.mg-testimonial__text { color: #d9d6cc; font-size: 0.95rem; margin-bottom: 1rem; font-style: italic; }
.mg-testimonial__author { display: flex; justify-content: space-between; align-items: center; }
.mg-testimonial__name { font-weight: 700; color: #fff; font-size: 0.9rem; }
.mg-testimonial__verified { font-size: 0.72rem; color: #6fbf73; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- 13. HOW TO USE ------------------------------------------------ */
.mg-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
.mg-step { text-align: center; padding: clamp(1rem, 2vw, 1.4rem); }
.mg-step__num {
  width: 52px; height: 52px; margin: 0 auto clamp(0.9rem, 1.5vw, 1.1rem);
  border-radius: 50%;
  background: linear-gradient(135deg, #f47521, #ff8533);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
}
.mg-step__title { font-size: clamp(1rem, 1.3vw, 1.1rem); margin-bottom: 0.4rem; }
.mg-step__text { color: #c2bfb6; font-size: 0.9rem; }

/* ---------- 14. ORDER FORM (form_placement: dedicated-section) ----------- */
.mg-order {
  background: linear-gradient(160deg, #1a1a1a, #241812);
}
.mg-order__layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.mg-order__flow { list-style: none; }
.mg-order__flow li {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: clamp(0.8rem, 1.4vw, 1rem) 0;
}
.mg-order__flow-num {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid #f47521; color: #f47521;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.mg-order__flow-text { color: #d9d6cc; font-size: 0.95rem; }

/* scroll-reveal trigger (cta_logic) */
.mg-reveal-trigger { height: 1px; }
.mg-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.mg-reveal.is-visible { opacity: 1; transform: translateY(0); }

.mg-form {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}
.mg-form__price { text-align: center; margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem); }
.mg-form__price-new { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.4rem); color: #fff; }
.mg-form__price-old { text-decoration: line-through; color: #9a9a9a; margin-right: 0.6rem; }
.mg-form__group { margin-bottom: clamp(1rem, 2vw, 1.25rem); }
.mg-form__label { display: block; font-size: 0.85rem; color: #c2bfb6; margin-bottom: 0.4rem; }
.mg-form__input {
  width: 100%;
  padding: clamp(0.8rem, 1.5vw, 0.95rem) clamp(0.9rem, 1.6vw, 1.1rem);
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: #141414;
  color: #fff;
  font-size: 1rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.mg-form__input:focus { outline: none; border-color: #f47521; box-shadow: 0 0 0 3px rgba(244,117,33,0.25); }
.mg-form__input::placeholder { color: #6b6b6b; }
.mg-form__checkbox { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: #b7b3a9; margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem); }
.mg-form__checkbox input { margin-top: 0.2rem; accent-color: #f47521; }
.mg-form__error { color: #ff8a8a; font-size: 0.82rem; margin-top: 0.4rem; }
.mg-form__note { color: #7f7b71; font-size: 0.78rem; margin-top: 0.9rem; text-align: center; }
.mg-form__success { text-align: center; color: #8be08b; padding: 1.5rem 0; font-size: 1.05rem; }

/* ---------- 15. FAQ — gradient-accordion --------------------------------- */
.mg-faq { max-width: 780px; margin: 0 auto; }
.mg-faq__item {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: background 0.3s ease;
}
.mg-faq__item.is-open { background: linear-gradient(135deg, rgba(244,117,33,0.16), rgba(244,117,33,0.02)); }
.mg-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: #fff;
  text-align: left;
  font-size: clamp(0.95rem, 1.1vw, 1.02rem);
}
.mg-faq__icon { color: #f47521; transition: transform 0.3s ease; font-size: 1.2rem; flex-shrink: 0; margin-left: 1rem; }
.mg-faq__item.is-open .mg-faq__icon { transform: rotate(45deg); }
.mg-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 clamp(1.05rem, 1.8vw, 1.25rem);
  color: #c2bfb6;
  font-size: 0.94rem;
}
.mg-faq__item.is-open .mg-faq__a { max-height: 300px; padding-bottom: clamp(1.05rem, 1.8vw, 1.25rem); }

/* ---------- 16. FOOTER — bordered-top-thick ------------------------------ */
.mg-footer {
  background: #101010;
  border-top: 6px solid #f47521;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
}
.mg-footer__cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.mg-footer__brand { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.9rem; }
.mg-footer__brand img { height: 1.8rem; width: auto; }
.mg-footer__brand-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #fff; }
.mg-footer__desc { color: #8f8b81; font-size: 0.88rem; max-width: 320px; }
.mg-footer__heading { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.9rem; }
.mg-footer__list li { margin-bottom: 0.55rem; }
.mg-footer__list a { color: #a8a49a; font-size: 0.9rem; }
.mg-footer__list a:hover { color: #f47521; }
.mg-footer__contact { color: #a8a49a; font-size: 0.9rem; margin-bottom: 0.5rem; }
.mg-footer__disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #6f6b62;
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(0.9rem, 2vw, 1.1rem);
}
.mg-footer__bottom {
  text-align: center;
  color: #5c584f;
  font-size: 0.82rem;
}
.mg-footer__bottom a { color: #857f72; }

/* ---------- 17. COOKIE CONSENT (themed) ----------------------------------- */
.cc-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999;
  background: #1a1a1a; color: #f1efe9;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.5);
  transform: translateY(100%); opacity: 0; visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  font-family: 'Source Sans 3', sans-serif; font-size: 0.95rem;
  border-top: 1px solid rgba(244,117,33,0.35);
}
.cc-banner.cc-visible { transform: translateY(0); opacity: 1; visibility: visible; }
.cc-banner-container { max-width: 1200px; margin: 0 auto; padding: 1.5rem 1.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem; }
.cc-banner-content { flex: 1 1 auto; min-width: 260px; max-width: 680px; }
.cc-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; color: #fff; font-family: 'Playfair Display', serif; }
.cc-description { color: #b7b3a9; font-size: 0.88rem; line-height: 1.6; }
.cc-link { color: #f47521; text-decoration: underline; }
.cc-banner-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.cc-btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.7rem 1.35rem; font-size: 0.88rem; font-weight: 700; border-radius: 999px; border: 2px solid transparent; min-height: 44px; }
.cc-btn-primary { background: #f47521; color: #fff; border-color: #f47521; }
.cc-btn-primary:hover { background: #ff8533; }
.cc-btn-secondary { background: transparent; color: #f1efe9; border-color: rgba(255,255,255,0.25); }
.cc-btn-secondary:hover { border-color: #f47521; color: #f47521; }
.cc-btn-link { background: transparent; color: #a8a49a; border-color: transparent; text-decoration: underline; padding: 0.7rem 0.6rem; }
.cc-settings-modal { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.cc-settings-modal.cc-visible { opacity: 1; visibility: visible; }
.cc-settings-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.cc-settings-container { position: relative; background: #1a1a1a; border-radius: 16px; max-width: 560px; width: 90%; max-height: 85vh; overflow: hidden; display: flex; flex-direction: column; }
.cc-settings-header { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.6rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cc-settings-title { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.15rem; }
.cc-settings-close { width: 36px; height: 36px; border-radius: 50%; color: #b7b3a9; display: flex; align-items: center; justify-content: center; }
.cc-settings-close:hover { background: rgba(255,255,255,0.08); color: #fff; }
.cc-settings-body { padding: 1.6rem; overflow-y: auto; }
.cc-settings-description { color: #a8a49a; font-size: 0.88rem; margin-bottom: 1.25rem; }
.cc-category { padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; gap: 1rem; justify-content: space-between; }
.cc-category:last-child { border-bottom: none; }
.cc-category-title { color: #fff; font-size: 0.95rem; margin-bottom: 0.25rem; }
.cc-category-description { color: #918d84; font-size: 0.82rem; }
.cc-toggle-label { display: block; width: 46px; height: 26px; background: #3a3a3a; border-radius: 14px; position: relative; cursor: pointer; }
.cc-toggle-label::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform 0.2s ease; }
.cc-toggle input:checked + .cc-toggle-label { background: #f47521; }
.cc-toggle input:checked + .cc-toggle-label::after { transform: translateX(20px); }
.cc-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.cc-toggle-disabled .cc-toggle-label { opacity: 0.6; cursor: not-allowed; }
.cc-settings-footer { padding: 1.4rem 1.6rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: flex-end; }
.cc-footer-link { color: #857f72; text-decoration: underline; font-size: 0.85rem; cursor: pointer; }
.cc-footer-separator { color: #504c44; }
@media (max-width: 768px) {
  .cc-banner-container { flex-direction: column; align-items: stretch; }
  .cc-banner-actions { flex-direction: column; }
  .cc-btn { width: 100%; }
}

/* ---------- 18. LEGAL PAGES (privacy/terms/cookie-policy/disclaimer) ----- */
.mg-legal { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(4rem, 7vw, 5rem); }
.mg-legal__container { max-width: 780px; margin: 0 auto; }
.mg-legal h1 { font-size: clamp(1.9rem, 3.5vw, 2.4rem); margin-bottom: 0.6rem; }
.mg-legal__updated { color: #857f72; font-size: 0.85rem; margin-bottom: clamp(2rem, 4vw, 2.5rem); }
.mg-legal h2 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); margin: clamp(1.75rem, 3vw, 2.25rem) 0 0.75rem; }
.mg-legal p, .mg-legal li { color: #c9c6bd; font-size: 0.98rem; margin-bottom: 0.75rem; }
.mg-legal ul { list-style: disc; padding-left: 1.4rem; }
.mg-legal a { color: #f47521; }
.mg-legal__back { display: inline-block; margin-bottom: clamp(1.5rem, 3vw, 2rem); color: #a8a49a; font-size: 0.9rem; }
.mg-legal__back:hover { color: #f47521; }

/* ---------- 19. RESPONSIVE (mobile_behavior: simplified-layout) ---------- */
@media (max-width: 1024px) {
  .mg-order__layout { grid-template-columns: 1fr; }
  .mg-inside__layout { grid-template-columns: 1fr; }
  .mg-footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .mg-hero { min-height: 560px; background-attachment: scroll; }
  .mg-hero__title { font-size: 2rem; }
  .mg-why__grid { grid-template-columns: 1fr; }
  .mg-steps__grid { grid-template-columns: 1fr; }
  .mg-footer__cols { grid-template-columns: 1fr; }
  .mg-quickorder { flex-direction: column; border-radius: 16px; }
  .mg-quickorder__input, .mg-quickorder__btn { border-radius: 0; }
  .mg-quickorder__btn { padding: 0.85rem; }
  .mg-voices__stats { gap: 1.75rem; }
  section { padding: 1.5rem 1rem; }
  .mg-section { padding: clamp(2rem, 8vw, 2.5rem) 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mg-reveal, .mg-card, .mg-btn, .cc-banner { transition: none; }
}
