@import url('fonts.css');

/* ==========================================================================
   REFORMA STUDIO — brand tokens
   Palette sampled from company materials. Brand green = #003815.
   ========================================================================== */
:root {
  /* greens */
  --green-900: #003815;   /* brand */
  --green-850: #05411c;
  --green-800: #0a4a23;
  --green-700: #15592e;

  /* neutrals */
  --ink:       #1b211b;   /* body text on light */
  --ink-soft:  #4a514a;   /* secondary text on light */
  --paper:     #f2eee5;   /* warm off-white section */
  --paper-2:   #ece6da;   /* alt warm section */
  --card:      #fbfaf5;   /* card surface */
  --line:      #e1dccf;   /* hairline on light */
  --cream:     #f4f0e7;   /* light on dark / buttons */

  /* accents */
  --sage:      #a9c1ad;   /* muted light-green text on dark */
  --sage-soft: #86a48e;
  --on-dark:   #eef3ee;   /* near-white text on green */
  --wood:      #b98f5e;   /* warm micro-accent, used sparingly */

  /* system */
  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.2,.6,.2,1);
  --shadow: 0 18px 44px -22px rgba(0,42,18,.35);

  --font-display: 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Golos Text', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--paper { background: var(--paper); }
.section--paper2 { background: var(--paper-2); }
.section--card  { background: var(--card); }
.stack > * + * { margin-top: 1.1rem; }

/* ---------- typography ---------- */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: .2px; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--wood); display: inline-block;
}
.eyebrow--light { color: var(--sage); }
.eyebrow--light::before { background: var(--sage-soft); }

.h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); color: var(--green-900); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 62ch; }
.muted { color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-display); font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; font-size: .92rem;
  padding: .95em 1.6em; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--wood); outline-offset: 3px; }
.btn--primary { background: var(--cream); color: var(--green-900); }
.btn--primary:hover { background: #fff; }
.btn--solid { background: var(--green-900); color: var(--cream); }
.btn--solid:hover { background: var(--green-800); }
.btn--ghost { border-color: rgba(238,243,238,.5); color: var(--on-dark); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(255,255,255,.06); }
.btn--ghost-dark { border-color: var(--green-900); color: var(--green-900); }
.btn--ghost-dark:hover { background: var(--green-900); color: var(--cream); }
.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.notice {
  background: var(--green-850); color: var(--sage);
  font-size: .82rem; letter-spacing: .01em;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.notice .wrap { display: flex; align-items: center; gap: .6em; padding-block: 8px; }
.notice__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--wood); flex: none;
  box-shadow: 0 0 0 0 rgba(185,143,94,.7); animation: pulse 2.6s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(185,143,94,.55);} 70%{box-shadow:0 0 0 7px rgba(185,143,94,0);} 100%{box-shadow:0 0 0 0 rgba(185,143,94,0);} }
.notice span { color: var(--on-dark); }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(0,56,21,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--on-dark);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-block: 14px; flex-wrap: wrap;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav a {
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .12em; font-size: .82rem; color: var(--sage);
  padding: 8px 12px; border-radius: 8px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { color: var(--on-dark); background: rgba(255,255,255,.06); }
.nav a[aria-current="page"] { color: var(--cream); }
.nav a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; background: var(--wood);
  margin-top: 5px; border-radius: 2px;
}
.nav__cta { margin-left: 6px; }
.nav__cta a {
  color: var(--green-900); background: var(--cream);
}
.nav__cta a:hover { background: #fff; color: var(--green-900); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: clip;
  background: radial-gradient(120% 120% at 80% -10%, var(--green-800) 0%, var(--green-900) 55%);
  color: var(--on-dark);
}
.hero__contours {
  position: absolute; inset: 0; z-index: 0;
  background: url('../img/contours-light.svg') center/cover no-repeat;
  opacity: .5;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
}
.hero .wrap { position: relative; z-index: 1; }
.hero--home .wrap { padding-block: clamp(72px, 12vw, 150px); }
.hero__inner { max-width: 860px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 6.4vw, 5.1rem);
  line-height: 1.02; letter-spacing: -.5px; margin-top: 22px;
  color: #fff;
}
.hero h1 .accent { color: var(--sage); }
.hero__sub { margin-top: 22px; font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--sage); max-width: 60ch; }
.hero__actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__chip {
  margin-top: 30px; display: inline-flex; align-items: center; gap: 10px;
  font-size: .84rem; color: var(--sage);
  border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
  padding: 8px 16px 8px 12px; background: rgba(0,0,0,.14);
}
.hero__chip .notice__dot { animation: pulse 2.6s infinite; }

/* page-hero (interior) */
.pagehero {
  position: relative; overflow: clip;
  background: linear-gradient(180deg, var(--green-900), var(--green-850));
  color: var(--on-dark);
}
.pagehero__contours {
  position: absolute; inset: 0;
  background: url('../img/contours-light.svg') center/cover no-repeat;
  opacity: .35;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 40%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 40%, transparent);
}
.pagehero .wrap { position: relative; z-index: 1; padding-block: clamp(56px, 8vw, 96px); }
.pagehero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; margin-top: 16px; }
.pagehero p { margin-top: 16px; color: var(--sage); max-width: 60ch; font-size: 1.08rem; }
.crumbs { font-size: .82rem; color: var(--sage-soft); letter-spacing: .04em; }
.crumbs a:hover { color: var(--on-dark); }

/* ==========================================================================
   Section head
   ========================================================================== */
.sec-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head .h2 { margin-top: 14px; }
.sec-head p { margin-top: 16px; }

/* ---------- generic grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- value tiles ---------- */
.value {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d3ccbb; }
.value__mark { font-family: var(--font-display); font-weight: 700; color: var(--wood);
  font-size: .9rem; letter-spacing: .1em; }
.value h3 { color: var(--green-900); font-size: 1.28rem; margin-top: 12px; }
.value p { margin-top: 8px; color: var(--ink-soft); font-size: .98rem; }

/* ---------- service direction cards ---------- */
.svc-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.svc {
  position: relative; overflow: hidden;
  background: var(--green-900); color: var(--on-dark);
  border-radius: var(--radius); padding: 30px 28px 28px;
  min-height: 230px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc::after {
  content: ""; position: absolute; right: -30px; bottom: -30px; width: 180px; height: 180px;
  background: url('../img/contours-light.svg') right bottom/220px no-repeat; opacity: .22;
  pointer-events: none;
}
.svc:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -24px rgba(0,42,18,.65); }
.svc__no { font-family: var(--font-display); font-weight: 600; color: var(--sage-soft); letter-spacing: .1em; font-size: .82rem; }
.svc h3 { font-size: 1.5rem; color: #fff; margin-top: 10px; max-width: 15ch; }
.svc p { margin-top: 12px; color: var(--sage); font-size: .98rem; position: relative; z-index: 1; }
.svc__link {
  margin-top: auto; padding-top: 18px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; font-size: .82rem; color: var(--cream);
  display: inline-flex; align-items: center; gap: .5em; position: relative; z-index: 1;
}
.svc__link .btn__arrow { transition: transform .25s var(--ease); }
.svc:hover .svc__link .btn__arrow { transform: translateX(4px); }

/* ---------- advantages ---------- */
.adv { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.adv__item { padding: 30px 28px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.adv__item:nth-child(2n) { border-right: none; }
.adv__no { font-family: var(--font-display); font-weight: 700; color: var(--wood); font-size: 1rem; letter-spacing: .08em; }
.adv__item h3 { color: var(--green-900); font-size: 1.24rem; margin-top: 10px; }
.adv__item p { margin-top: 8px; color: var(--ink-soft); font-size: .98rem; }

/* ==========================================================================
   Services page — detailed blocks
   ========================================================================== */
.svc-block { padding-block: clamp(40px, 6vw, 66px); border-bottom: 1px solid var(--line); }
.svc-block:last-child { border-bottom: none; }
.svc-block__grid { display: grid; grid-template-columns: minmax(0, 360px) 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.svc-block__no { font-family: var(--font-display); font-weight: 700; color: var(--wood);
  font-size: 1.05rem; letter-spacing: .12em; }
.svc-block h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--green-900); margin-top: 10px; }
.svc-block__lead { margin-top: 16px; color: var(--ink-soft); }
.svc-list { list-style: none; padding: 0; display: grid; gap: 2px; }
.svc-list li {
  display: flex; gap: 16px; align-items: baseline;
  padding: 15px 6px; border-bottom: 1px solid var(--line);
}
.svc-list li:first-child { border-top: 1px solid var(--line); }
.svc-list__tick { color: var(--green-700); flex: none; font-weight: 700; }
.svc-list b { color: var(--green-900); font-weight: 600; }

/* ==========================================================================
   Process (about page) — a real sequence, numbered
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--green-900); }
.step__no { font-family: var(--font-display); font-weight: 700; color: var(--green-900); font-size: 2.4rem; line-height: 1; }
.step h3 { color: var(--green-900); font-size: 1.2rem; margin-top: 10px; }
.step p { margin-top: 8px; color: var(--ink-soft); font-size: .96rem; }

/* prose */
.prose { max-width: 68ch; }
.prose p { margin-top: 1.1rem; color: var(--ink-soft); }
.prose p:first-child { margin-top: 0; }
.prose strong { color: var(--green-900); font-weight: 600; }

/* portfolio empty state */
.empty {
  border: 1.5px dashed var(--line); border-radius: var(--radius);
  padding: clamp(40px, 6vw, 72px); text-align: center; background: var(--card);
}
.empty h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--green-900); }
.empty p { margin-top: 12px; color: var(--ink-soft); max-width: 52ch; margin-inline: auto; }
.empty .btn { margin-top: 24px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; overflow: clip; background: var(--green-900); color: var(--on-dark); }
.cta-band__contours { position: absolute; inset: 0;
  background: url('../img/contours-light.svg') center/cover no-repeat; opacity: .28; }
.cta-band .wrap { position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); color: #fff; max-width: 18ch; }
.cta-band p { margin-top: 12px; color: var(--sage); }
.cta-band__side { display: flex; flex-direction: column; gap: 14px; }
.cta-line { display: inline-flex; align-items: center; gap: 12px; color: var(--on-dark); font-size: 1.05rem; }
.cta-line b { font-family: var(--font-display); font-weight: 600; letter-spacing: .02em; }

/* ==========================================================================
   Contacts
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d3ccbb; }
.contact-card__label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .16em;
  font-size: .74rem; color: var(--green-700); }
.contact-card__value { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--green-900); margin-top: 10px; word-break: break-word; }
.contact-card__value a:hover { color: var(--green-700); }
.contact-card__note { margin-top: 8px; color: var(--ink-soft); font-size: .92rem; }

/* form */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .86rem; font-weight: 600; color: var(--green-900); }
.field input, .field textarea {
  font: inherit; color: var(--ink); background: var(--card);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(21,89,46,.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .85rem; color: var(--ink-soft); }
.form__ok { display:none; background: var(--green-900); color: var(--cream);
  padding: 14px 16px; border-radius: var(--radius-sm); font-size: .95rem; }
.form__ok.is-visible { display: block; }

/* requisites table */
.req {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.req__row { display: grid; grid-template-columns: 300px 1fr; gap: 24px;
  padding: 15px 26px; border-bottom: 1px solid var(--line); }
.req__row:last-child { border-bottom: none; }
.req__row:nth-child(odd) { background: rgba(0,56,21,.02); }
.req__k { color: var(--ink-soft); font-size: .92rem; }
.req__v { color: var(--green-900); font-weight: 500; }
.req__group-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em;
  font-size: .8rem; color: var(--green-700); padding: 18px 26px 6px; background: var(--paper-2); }

/* map */
.map { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper-2); }
.map iframe { display: block; width: 100%; height: 420px; border: 0; }
.map__bar { display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 20px; flex-wrap: wrap; }
.map__bar span { color: var(--ink-soft); font-size: .95rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--green-900); color: var(--sage); position: relative; overflow: clip; }
.site-footer__contours { position:absolute; inset:0;
  background:url('../img/contours-light.svg') center/cover no-repeat; opacity:.12; }
.site-footer .wrap { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-block: 60px 40px; }
.site-footer img.flogo { height: 40px; width: auto; margin-bottom: 18px; }
.site-footer p { color: var(--sage); font-size: .95rem; max-width: 34ch; }
.fcol h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em;
  font-size: .8rem; color: var(--on-dark); margin-bottom: 16px; }
.fcol a, .fcol div { display: block; color: var(--sage); font-size: .98rem; padding: 4px 0; }
.fcol a:hover { color: var(--on-dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: var(--sage-soft); }
.footer-bottom a:hover { color: var(--on-dark); }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
/* Only hide when JS is available (html.js is set by inline script in <head>). */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .svc-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .svc-block__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-header .wrap { justify-content: center; }
  .brand { width: 100%; justify-content: center; }
  .nav { justify-content: center; width: 100%; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .req__row { grid-template-columns: 1fr; gap: 4px; }
  .req__k { font-size: .84rem; }
}
@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4, .adv, .steps, .contact-grid, .form__row { grid-template-columns: 1fr; }
  .adv__item { border-right: none; }
  .value, .contact-card { padding: 22px 20px; }
  .nav a { padding: 7px 9px; font-size: .78rem; }
}

/* ========================================================================
   Requisites page + CTA + print
   ======================================================================== */
.wrap--narrow { max-width: 920px; }

/* CTA card on contacts page */
.req-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
}
.req-cta__text { max-width: 60ch; }
.req-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* action bar on requisites page */
.req-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.req-actions .btn--ghost { border-color: var(--green-900); color: var(--green-900); }
.req-actions .btn--ghost:hover { background: var(--green-900); color: var(--cream); }

/* requisites sheet */
.req-sheet {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.req-sheet__head {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 26px 22px; border-bottom: 2px solid var(--green-900);
}
.req-sheet__logo { height: 42px; width: auto; }
.req-sheet__title { display: flex; flex-direction: column; line-height: 1.25; }
.req-sheet__title strong { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .02em; color: var(--green-900); }
.req-sheet__title span { color: var(--ink-soft); font-size: .9rem; }
.req-sheet .req { border: none; border-radius: 0; }
.req-sheet__note { padding: 16px 26px 24px; color: var(--ink-soft); font-size: .85rem; }

@media (max-width: 560px) {
  .req-cta { flex-direction: column; align-items: flex-start; }
  .req-actions .btn, .req-cta__actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ---------- print ---------- */
@media print {
  .notice, .site-header, .pagehero, .site-footer, .no-print, .req-actions { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .section { padding: 0 !important; background: #fff !important; }
  .wrap, .wrap--narrow { max-width: none; padding: 0; }
  .req-sheet { box-shadow: none; border: 1px solid #000; page-break-inside: avoid; }
  .req-sheet__head { border-bottom: 2px solid #000; }
  .req-sheet__title strong, .req__v { color: #000; }
  .req__row:nth-child(odd) { background: #f3f3f3 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  a { color: #000; text-decoration: none; }
  .req-sheet .reveal, .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   ТЕМА «СВЕТ» (light eco) — включается классом body.theme-light.
   Светлые поверхности доминируют; тёмно-зелёный остаётся на
   карточках направлений, CTA-полосе и подвале как акцент.
   ============================================================ */
.theme-light .notice { background:#e8e2d4; color:#4a514a; border-bottom:1px solid #ddd6c6; }
.theme-light .notice span { color: var(--green-900); }

.theme-light .site-header {
  background: rgba(250,248,242,.9);
  border-bottom:1px solid var(--line);
  color: var(--ink);
}
.theme-light .nav a { color: var(--ink-soft); }
.theme-light .nav a:hover { color: var(--green-900); background: rgba(0,56,21,.06); }
.theme-light .nav a[aria-current="page"] { color: var(--green-900); }
.theme-light .nav__cta a { color: var(--cream); background: var(--green-900); }
.theme-light .nav__cta a:hover { background: var(--green-800); color: var(--cream); }

/* главный первый экран → светлый */
.theme-light .hero {
  background: linear-gradient(180deg,#f6f2e9 0%, #efe9dc 100%);
  color: var(--ink);
}
.theme-light .hero__contours { background: url('../img/contours-green.svg') center/cover no-repeat; opacity:.16; }
.theme-light .hero h1 { color: var(--green-900); }
.theme-light .hero h1 .accent { color: var(--wood); }
.theme-light .hero__sub { color: var(--ink-soft); }
.theme-light .hero .eyebrow--light { color: var(--green-700); }
.theme-light .hero .eyebrow--light::before { background: var(--wood); }
.theme-light .hero__actions .btn--primary { background: var(--green-900); color: var(--cream); }
.theme-light .hero__actions .btn--primary:hover { background: var(--green-800); }
.theme-light .hero__actions .btn--ghost { border-color: var(--green-900); color: var(--green-900); }
.theme-light .hero__actions .btn--ghost:hover { background: var(--green-900); color: var(--cream); }
.theme-light .hero__chip { color: var(--ink-soft); border-color:#d8d0bf; background: rgba(255,255,255,.55); }

/* внутренние «шапки» страниц → светлые */
.theme-light .pagehero {
  background: linear-gradient(180deg,#f4efe4 0%, #efe9dc 100%);
  color: var(--ink);
}
.theme-light .pagehero__contours { background: url('../img/contours-green.svg') center/cover no-repeat; opacity:.12; }
.theme-light .pagehero h1 { color: var(--green-900); }
.theme-light .pagehero p { color: var(--ink-soft); }
.theme-light .crumbs { color: var(--ink-soft); }
.theme-light .crumbs a { color: var(--green-700); }
.theme-light .crumbs a:hover { color: var(--green-900); }
