:root {
  --moss-900: #1C211B;
  --moss-700: #2B2F29;
  --moss-600: #3E5640;
  --sage: #6E7C6A;
  --bark: #8A7A68;
  --sand: #EAE3D8;
  --paper: #F5F2EC;
  --white: #FFFDF8;
  --line: rgba(28, 33, 27, .14);
  --shadow: 0 24px 70px rgba(28, 33, 27, .13);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --font-body: "Golos Text", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Manrope", "Golos Text", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--moss-900);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute; left: 16px; top: 12px; z-index: 100;
  transform: translateY(-140%); padding: 10px 14px; border-radius: 999px;
  background: var(--sand); color: var(--moss-900); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #d4b98c; outline-offset: 4px; border-radius: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 242, 236, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(28, 33, 27, .08);
}
.header-inner { height: 76px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; min-width: 0; }
.brand img { display: block; height: 44px; width: auto; max-width: none; aspect-ratio: 1080 / 497; border-radius: 999px; object-fit: contain; object-position: center; }
.footer .brand img { height: 38px; }
.nav { margin-left: auto; display: flex; gap: 22px; align-items: center; font-size: 15px; color: rgba(28, 33, 27, .78); }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--moss-900); }
.header-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 18px; border-radius: 999px;
  background: var(--moss-900); color: var(--paper); font-weight: 600; font-size: 14px;
}
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--moss-900); border-radius: 2px; }

.hero {
  position: relative; overflow: hidden; color: var(--paper);
  background:
    linear-gradient(180deg, rgba(10, 14, 10, .60) 0%, rgba(10, 14, 10, .12) 32%, rgba(10, 14, 10, .28) 100%),
    linear-gradient(90deg, rgba(8, 12, 8, .86) 0%, rgba(12, 17, 12, .72) 38%, rgba(12, 17, 12, .34) 66%, rgba(12, 17, 12, .46) 100%),
    url("/assets/hero-mosirock.jpg") 65% center / cover no-repeat,
    linear-gradient(135deg, #141913 0%, #1C211B 42%, #2B2F29 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .28; pointer-events: none;
  background:
    radial-gradient(circle at 76% 48%, rgba(110, 124, 106, .42), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(234, 227, 216, .10), transparent 28%);
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr); gap: 56px; align-items: center; min-height: 710px; padding-block: 84px; }
.eyebrow, .section-kicker { margin: 0 0 14px; color: var(--bark); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
.hero .eyebrow { display: inline-flex; color: var(--sand); border: 1px solid rgba(234, 227, 216, .24); border-radius: 999px; padding: 8px 13px; background: rgba(245, 242, 236, .06); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; margin: 0; letter-spacing: -.035em; }
h1 { font-size: clamp(44px, 7vw, 82px); max-width: 880px; }
h2 { font-size: clamp(32px, 4.2vw, 56px); }
h3 { font-size: 22px; letter-spacing: -.02em; }
.hero-text { max-width: 690px; margin: 26px 0 0; font-size: clamp(18px, 2vw, 22px); color: rgba(245, 242, 236, .78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 999px; font-weight: 700; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--sand); color: var(--moss-900); }
.button-ghost { border-color: rgba(234, 227, 216, .32); color: var(--paper); background: rgba(245, 242, 236, .06); }
.hero-card { align-self: end; padding: 28px; border: 1px solid rgba(234, 227, 216, .2); border-radius: var(--radius-xl); background: rgba(245, 242, 236, .08); box-shadow: 0 30px 100px rgba(0,0,0,.24); backdrop-filter: blur(18px); }
.hero-card-logo { width: min(174px, 100%); height: auto; border-radius: 999px; }
.hero-card p { margin: 20px 0; font-size: 19px; color: rgba(245, 242, 236, .9); }
.hero-card ul { margin: 0; padding-left: 20px; color: rgba(245, 242, 236, .72); }

.trust { background: var(--sand); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.trust-grid div { padding: 26px 22px; border-left: 1px solid rgba(28,33,27,.1); }
.trust-grid div:last-child { border-right: 1px solid rgba(28,33,27,.1); }
.trust strong { display: block; font-family: var(--font-display); font-size: 19px; }
.trust span { display: block; margin-top: 4px; color: rgba(28,33,27,.62); font-size: 14px; }

.section { padding: 104px 0; }
.section-soft { background: var(--white); }
.two-col { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.section-copy p, .section-head p { margin: 0 0 18px; font-size: 18px; color: rgba(28, 33, 27, .72); }
.section-head { max-width: 780px; margin-bottom: 42px; }
.cards, .pricing-grid { display: grid; gap: 18px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card, .price-card, .proof-list article, .note, .contact-form {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 8px 28px rgba(28,33,27,.05);
}
.card p, .price-card p, .proof-list p, .note p { color: rgba(28,33,27,.68); margin: 14px 0 0; }
.proof-list { display: grid; gap: 16px; }

.section-dark { background: var(--moss-900); color: var(--paper); }
.section-dark .section-kicker { color: var(--sand); }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: step; }
.steps li { padding: 24px; border-radius: var(--radius-lg); background: rgba(245,242,236,.07); border: 1px solid rgba(234,227,216,.14); }
.steps span { color: var(--sand); font-weight: 800; font-family: var(--font-display); }
.steps h3 { margin-top: 24px; }
.steps p { color: rgba(245,242,236,.68); margin-bottom: 0; }

.pricing-grid { grid-template-columns: repeat(3, 1fr); }
.price-card { background: var(--paper); }
.price-card.featured { background: var(--moss-900); color: var(--paper); transform: translateY(-10px); }
.price-card.featured p { color: rgba(245,242,236,.72); }
.price { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--moss-600) !important; }
.featured .price { color: var(--sand) !important; }
.text-link { display: inline-flex; margin-top: 22px; font-weight: 800; color: var(--moss-600); }
.featured .text-link { color: var(--sand); }
.note { background: var(--sand); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: start; }
.contact-list { display: grid; gap: 12px; margin-top: 28px; }
.contact-list a { display: inline-flex; width: fit-content; font-size: 20px; font-weight: 700; color: var(--moss-600); }
.contact-form { background: var(--white); }
.form-row { display: grid; gap: 8px; margin-bottom: 18px; }
label { font-weight: 700; }
input, textarea {
  width: 100%; border: 1px solid rgba(28,33,27,.18); border-radius: 16px;
  padding: 14px 16px; background: #fff; color: var(--moss-900);
}
textarea { resize: vertical; min-height: 136px; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 6px 0 22px; font-size: 14px; color: rgba(28,33,27,.68); font-weight: 500; }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; }
.contact-form .button-primary { background: var(--moss-900); color: var(--paper); width: 100%; border: 0; }
.form-note { margin: 16px 0 0; font-size: 14px; color: rgba(28,33,27,.58); }
.form-note.is-alert { color: #5b3b14; font-weight: 700; }
.privacy { padding: 48px 0; background: var(--sand); border-top: 1px solid var(--line); }
.privacy h2 { font-size: 26px; }
.privacy p { max-width: 900px; margin: 12px 0 0; color: rgba(28,33,27,.68); }
.footer { background: var(--moss-900); color: rgba(245,242,236,.72); padding: 30px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer a { color: var(--paper); }

@media (max-width: 1020px) {
  .header-cta { display: none; }
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-grid { min-height: auto; }
  .cards.four, .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-inner { height: 68px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed; left: 14px; right: 14px; top: 78px; margin: 0; display: none;
    padding: 18px; border-radius: 22px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav.is-open { display: grid; gap: 4px; }
  .nav a { padding: 13px 10px; font-size: 18px; }
  .hero-grid { padding-block: 58px; }
  .hero-card { padding: 22px; }
  .trust-grid, .cards.four, .steps, .pricing-grid { grid-template-columns: 1fr; }
  .trust-grid div, .trust-grid div:last-child { border-right: 0; border-left: 0; border-bottom: 1px solid rgba(28,33,27,.1); }
  .section { padding: 72px 0; }
  .card, .price-card, .proof-list article, .note, .contact-form { padding: 22px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 420px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(10, 14, 10, .70) 0%, rgba(10, 14, 10, .48) 44%, rgba(10, 14, 10, .78) 100%),
      linear-gradient(90deg, rgba(8, 12, 8, .84) 0%, rgba(8, 12, 8, .58) 100%),
      url("/assets/hero-mosirock.jpg") 72% center / cover no-repeat,
      linear-gradient(135deg, #141913 0%, #1C211B 42%, #2B2F29 100%);
  }
  h1 { font-size: 40px; }
  h2 { font-size: 31px; }
  .hero-actions .button { width: 100%; }
  .contact-list a { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
