:root {
  --color-bg: #fffdf8;
  --color-surface: #f4ebd7;
  --color-text: #23200f;
  --color-muted: #7a6f52;
  --color-accent: #0d7377;
  --color-accent-dark: #0a5a5d;
  --color-border: #e7dcc2;
  --font-head: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --container: 1140px;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-accent); }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 .6em; }

h1 { font-size: clamp(1.9rem, 5vw, 3rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); letter-spacing: -.01em; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

.mo-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.mo-section { padding: 64px 0; }
.mo-section--tint { background: var(--color-surface); }

.mo-eyebrow {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin: 0 0 .8em;
}

.mo-lead { font-size: 1.1rem; color: var(--color-muted); max-width: 62ch; }

.mo-rule { height: 1px; background: var(--color-border); border: 0; margin: 0; }

/* header */

.mo-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 30;
}

.mo-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
}

.mo-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -.01em;
  color: var(--color-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.mo-logo__mark { width: 24px; height: 24px; flex: 0 0 24px; }

.mo-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.mo-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-size: .95rem;
}

.mo-nav a:hover { color: var(--color-accent); }

.mo-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: none;
  cursor: pointer;
  padding: 10px;
}

.mo-burger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  margin: 4px 0;
}

/* hero */

.mo-hero { padding: 56px 0 48px; }

.mo-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}

.mo-hero__figure { margin: 0; }

.mo-hero__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--color-surface);
}

.mo-hero__caption {
  font-size: .82rem;
  color: var(--color-muted);
  margin-top: 8px;
}

.mo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.mo-btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: var(--radius);
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .97rem;
  border: 1px solid var(--color-accent);
  cursor: pointer;
  font-family: inherit;
}

.mo-btn:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); }

.mo-btn--ghost { background: none; color: var(--color-text); border-color: var(--color-border); }
.mo-btn--ghost:hover { background: var(--color-surface); border-color: var(--color-muted); }

.mo-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--color-border);
}

.mo-facts dt {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.mo-facts dd {
  margin: 4px 0 0;
  font-size: .86rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* cards */

.mo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.mo-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.mo-card__title { margin-bottom: .4em; }

.mo-card__text { color: var(--color-muted); font-size: .95rem; margin-bottom: 1.1em; }

.mo-card__meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.mo-price {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.mo-price small { display: block; font-size: .74rem; font-weight: 400; color: var(--color-muted); letter-spacing: 0; }

.mo-card__link { font-size: .9rem; font-weight: 600; text-decoration: none; }
.mo-card__link:hover { text-decoration: underline; }

/* steps */

.mo-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 34px;
  counter-reset: mo-step;
}

.mo-step { border-top: 2px solid var(--color-accent); padding-top: 16px; }

.mo-step__num {
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .18em;
  color: var(--color-muted);
  display: block;
  margin-bottom: 8px;
}

.mo-step h3 { margin-bottom: .35em; }
.mo-step p { color: var(--color-muted); font-size: .95rem; margin: 0; }

/* story */

.mo-story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 34px;
}

.mo-story figure { margin: 0; }

.mo-story img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--color-surface);
}

.mo-story figcaption { font-size: .84rem; color: var(--color-muted); margin-top: 8px; }

/* faq */

.mo-faq { margin-top: 30px; max-width: 820px; }

.mo-faq__item { border-bottom: 1px solid var(--color-border); }

.mo-faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 34px 18px 0;
  font-size: 1.02rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--color-text);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}

.mo-faq__q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-accent);
}

.mo-faq__item.is-open .mo-faq__q::after { content: "\2013"; }

.mo-faq__a { display: none; padding: 0 0 18px; color: var(--color-muted); }
.mo-faq__item.is-open .mo-faq__a { display: block; }

/* form */

.mo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 30px;
  align-items: start;
}

.mo-form { display: grid; gap: 14px; }

.mo-field label {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.mo-field input,
.mo-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font: inherit;
  font-size: .96rem;
  background: var(--color-bg);
  color: var(--color-text);
}

.mo-field input:focus,
.mo-field textarea:focus { outline: 2px solid var(--color-accent); outline-offset: 1px; border-color: var(--color-accent); }

.mo-field textarea { min-height: 128px; resize: vertical; }

.mo-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.mo-consent { font-size: .82rem; color: var(--color-muted); }

.mo-contact-box {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--color-surface);
}

.mo-contact-box dl { margin: 0; }
.mo-contact-box dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--color-muted); margin-top: 14px; }
.mo-contact-box dt:first-child { margin-top: 0; }
.mo-contact-box dd { margin: 2px 0 0; }

/* article / legal text */

.mo-prose { max-width: 74ch; }
.mo-prose h2 { margin-top: 1.6em; }
.mo-prose h3 { margin-top: 1.4em; }
.mo-prose ul, .mo-prose ol { padding-left: 22px; margin: 0 0 1em; }
.mo-prose li { margin-bottom: .45em; }
.mo-prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: .94rem; }
.mo-prose th, .mo-prose td { border: 1px solid var(--color-border); padding: 9px 11px; text-align: left; vertical-align: top; }
.mo-prose th { background: var(--color-surface); }

.mo-scroll { overflow-x: auto; }

.mo-page-head { padding: 44px 0 8px; }
.mo-page-head p { color: var(--color-muted); }

/* footer */

.mo-footer {
  border-top: 1px solid var(--color-border);
  padding: 46px 0 34px;
  background: var(--color-surface);
  font-size: .92rem;
}

.mo-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px;
}

.mo-footer h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--color-muted); margin-bottom: .9em; }

.mo-footer ul { list-style: none; margin: 0; padding: 0; }
.mo-footer li { margin-bottom: .45em; }
.mo-footer a { color: var(--color-text); text-decoration: none; }
.mo-footer a:hover { color: var(--color-accent); text-decoration: underline; }

.mo-footer__bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: .85rem;
}

/* cookie banner */

.mo-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
  padding: 18px 20px;
  max-width: 640px;
  margin: 0 auto;
  display: none;
}

.mo-cookie.is-visible { display: block; }
.mo-cookie p { font-size: .9rem; margin-bottom: .9em; }
.mo-cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.mo-cookie .mo-btn { padding: 10px 18px; font-size: .9rem; }

/* hero promo plaque */

.mo-promo {
  display: inline-block;
  margin: 4px 0 20px;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e7c260, #c79328);
  color: #2a2100;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  box-shadow: var(--shadow);
}

/* 404 */

.mo-404 { padding: 90px 0; text-align: center; }
.mo-404 p { color: var(--color-muted); max-width: 52ch; margin-left: auto; margin-right: auto; }

@media (max-width: 900px) {
  .mo-hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .mo-form-grid { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .mo-section { padding: 48px 0; }
  .mo-burger { display: block; }
  .mo-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 10px 20px 20px;
  }
  .mo-nav.is-open { display: block; }
  .mo-nav ul { flex-direction: column; gap: 0; }
  .mo-nav li { border-top: 1px solid var(--color-border); }
  .mo-nav a { display: block; padding: 12px 0; }
  .mo-header__inner { position: relative; }
  .mo-hero { padding: 36px 0 32px; }
}
