/* ==========================================================================
   EV.UM.DESIGN — дизайнер интерьера, Москва
   Editorial gallery. Onest (UI) + Cormorant Garamond (display).
   Палитра: paper + ink + deep forest accent. Light/Dark через prefers-color-scheme.
   ========================================================================== */

/* ----------  Tokens  ---------- */
:root {
  --paper:    #F5F3EE;
  --paper-2:  #ECE8E0;
  --paper-3:  #E3DED4;
  --ink:      #1B1A16;
  --ink-soft: #5E5B52;
  --ink-mute: #8A867B;
  --line:     rgba(27, 26, 22, .14);
  --line-2:   rgba(27, 26, 22, .08);
  --accent:   #3B5345;
  --accent-2: #2C4034;
  --on-accent:#F6F4EC;
  --shadow:   28px 40px 80px -40px rgba(27, 26, 22, .45);
  --field:    #FBFAF6;

  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 72px);
  --r: 0px;
  --ease: cubic-bezier(.16, 1, .3, 1);

  --ff-sans: 'Onest', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ff-disp: 'Cormorant Garamond', 'Onest', Georgia, serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper:    #131210;
    --paper-2:  #1A1814;
    --paper-3:  #211E18;
    --ink:      #EEEAE0;
    --ink-soft: #ABA596;
    --ink-mute: #807B6E;
    --line:     rgba(238, 234, 224, .16);
    --line-2:   rgba(238, 234, 224, .08);
    --accent:   #8FAE93;
    --accent-2: #A6C0A9;
    --on-accent:#13120F;
    --shadow:   28px 40px 90px -44px rgba(0, 0, 0, .8);
    --field:    #1C1A15;
  }
}

/* ----------  Reset / base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--on-accent); }

/* ----------  Typography  ---------- */
.display {
  font-family: var(--ff-disp);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.01em;
}
h1, h2, h3 { font-weight: 600; }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}
@media (prefers-color-scheme: dark) { .eyebrow { color: var(--accent-2); } }

.lead { font-size: clamp(18px, 2vw, 21px); color: var(--ink-soft); line-height: 1.55; max-width: 56ch; }

/* ----------  Layout  ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
section { padding-block: clamp(72px, 11vw, 160px); }
.section-head { max-width: 60ch; }
.section-head h2 { font-family: var(--ff-disp); font-weight: 500; font-size: clamp(34px, 5.4vw, 62px); line-height: 1.04; letter-spacing: -.01em; margin-top: 18px; }
.section-head p { margin-top: 20px; }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 15px 28px;
  font-size: 15px; font-weight: 500; letter-spacing: .01em;
  border-radius: var(--r);
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 18px 34px; font-size: 16px; }

.link-underline {
  position: relative; font-weight: 500; color: var(--ink);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 100% 1px; background-position: 0 100%; background-repeat: no-repeat;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--accent); transition: width .4s var(--ease);
}
.link-underline:hover::after { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 74px;
}
.site-header.is-solid {
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
/* hero is dark photo → header text light until scrolled */
.site-header:not(.is-solid) { color: #F4F2EC; }
.site-header:not(.is-solid) .nav a:hover { color: #fff; }

.brand { grid-column: 2; justify-self: center; font-family: var(--ff-disp); font-weight: 600; font-size: 20px; letter-spacing: .14em; }
.nav { display: flex; gap: clamp(18px, 2.4vw, 36px); align-items: center; }
.nav a { font-size: 14.5px; font-weight: 500; color: inherit; opacity: .9; transition: opacity .2s, color .2s; }
.nav a:hover { opacity: 1; color: var(--accent); }
.nav--left { grid-column: 1; }
.nav--right { grid-column: 3; justify-self: end; }
.site-header.is-solid .nav a:hover { color: var(--accent); }

.menu-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: currentColor; position: relative; transition: .3s var(--ease); }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 1.5px; background: currentColor; transition: .3s var(--ease); }
.menu-toggle span::before { top: -7px; } .menu-toggle span::after { top: 7px; }
body.menu-open .menu-toggle span { background: transparent; }
body.menu-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-nav { position: fixed; inset: 0; z-index: 45; background: var(--paper); display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: var(--gutter); transform: translateY(-100%); transition: transform .5s var(--ease); visibility: hidden; }
body.menu-open .mobile-nav { transform: translateY(0); visibility: visible; }
.mobile-nav a { font-family: var(--ff-disp); font-size: clamp(30px, 9vw, 46px); font-weight: 500; padding: 6px 0; border-bottom: 1px solid var(--line-2); }
.mobile-nav .m-contacts { margin-top: 28px; font-family: var(--ff-sans); font-size: 16px; display: flex; flex-direction: column; gap: 8px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: flex-end; color: #F4F2EC; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,17,14,.42) 0%, rgba(18,17,14,.12) 34%, rgba(18,17,14,.20) 62%, rgba(18,17,14,.78) 100%); }
.hero__inner { width: 100%; padding-bottom: clamp(54px, 9vw, 110px); padding-top: 120px; }
.hero__eyebrow { color: #E7E3D6; opacity: .9; }
.hero h1 { font-family: var(--ff-disp); font-weight: 500; font-size: clamp(42px, 6.2vw, 84px); line-height: 1.04; letter-spacing: -.015em; margin-top: 18px; max-width: 24ch; }
.hero h1 .br { display: block; }
@media (max-width: 560px) { .hero h1 .br { display: inline; } }
.hero h1 em { font-style: italic; }
.hero__sub { margin-top: 26px; max-width: 46ch; font-size: clamp(17px, 1.7vw, 20px); color: #ECE8DD; line-height: 1.5; }
.hero__cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-ghost { border-color: rgba(244,242,236,.4); color: #F4F2EC; }
.hero .btn-ghost:hover { border-color: #F4F2EC; background: rgba(244,242,236,.08); }
.hero__meta { position: absolute; right: var(--gutter); bottom: clamp(54px, 9vw, 110px); writing-mode: vertical-rl; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; opacity: .8; display: flex; gap: 22px; }
@media (max-width: 900px) { .hero__meta { display: none; } }

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--paper); }
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow); }
.about__sig { position: absolute; left: -14px; bottom: 28px; background: var(--accent); color: var(--on-accent); padding: 16px 22px; border-radius: var(--r); max-width: 64%; }
.about__sig b { font-family: var(--ff-disp); font-size: 22px; font-weight: 600; display: block; }
.about__sig span { font-size: 13px; opacity: .85; }
.about__body h2 { font-family: var(--ff-disp); font-weight: 500; font-size: clamp(30px, 4.6vw, 52px); line-height: 1.06; letter-spacing: -.01em; }
.about__body .lead { margin-top: 26px; }
.about__quote { margin-top: 30px; padding-left: 22px; border-left: 2px solid var(--accent); font-family: var(--ff-disp); font-size: clamp(21px, 2.6vw, 28px); line-height: 1.3; font-style: italic; color: var(--ink); max-width: 40ch; }
.about__stats { margin-top: 40px; display: flex; gap: clamp(24px, 5vw, 56px); flex-wrap: wrap; }
.about__stats div b { font-family: var(--ff-disp); font-size: clamp(34px, 5vw, 48px); font-weight: 600; line-height: 1; display: block; }
.about__stats div span { font-size: 14px; color: var(--ink-soft); }

/* ==========================================================================
   Services
   ========================================================================== */
.services { background: var(--paper-2); }
.services__list { margin-top: clamp(36px, 6vw, 64px); border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 64px 1fr 1.3fr; gap: clamp(16px, 4vw, 48px); align-items: baseline; padding: clamp(26px, 4vw, 44px) 0; border-bottom: 1px solid var(--line); transition: padding-left .4s var(--ease); }
.service-row:hover { padding-left: 14px; }
.service-row__no { font-family: var(--ff-disp); font-size: 22px; color: var(--accent); }
.service-row__title { font-family: var(--ff-disp); font-size: clamp(24px, 3.2vw, 36px); font-weight: 500; line-height: 1.1; }
.service-row__desc { color: var(--ink-soft); font-size: 16px; }
.service-row__desc ul { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.service-row__desc li { font-size: 13px; padding: 5px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); }

/* ==========================================================================
   Process
   ========================================================================== */
.process { background: var(--paper); }
.process__grid { margin-top: clamp(40px, 6vw, 70px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.step { background: var(--paper); padding: clamp(26px, 3vw, 38px) clamp(22px, 2.4vw, 30px); min-height: 270px; display: flex; flex-direction: column; transition: background-color .4s var(--ease); }
.step:hover { background: var(--paper-2); }
.step__no { font-family: var(--ff-disp); font-size: 40px; font-weight: 600; color: var(--accent); line-height: 1; }
.step h3 { font-family: var(--ff-disp); font-size: 25px; font-weight: 500; margin-top: auto; }
.step p { margin-top: 12px; font-size: 14.5px; color: var(--ink-soft); }

/* ==========================================================================
   Portfolio
   ========================================================================== */
.portfolio { background: var(--paper-2); }
.project { margin-top: clamp(48px, 8vw, 104px); }
.project__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 26px; }
.project__title { font-family: var(--ff-disp); font-size: clamp(28px, 4vw, 46px); font-weight: 500; line-height: 1.04; }
.project__title span { display: block; font-family: var(--ff-sans); font-size: 14px; letter-spacing: .04em; color: var(--accent); font-weight: 500; margin-bottom: 8px; }
.project__meta { font-size: 14px; color: var(--ink-soft); text-align: right; }

.gal { display: grid; gap: clamp(10px, 1.4vw, 18px); }
.gal--a { grid-template-columns: 1.4fr 1fr; grid-auto-rows: 1fr; }
.gal--a .g-tall { grid-row: span 2; }
.gal--b { grid-template-columns: repeat(3, 1fr); }
.gal--c { grid-template-columns: 1fr 1fr; }
.gal figure { position: relative; overflow: hidden; border-radius: var(--r); margin: 0; background: var(--paper-3); }
.gal img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .9s var(--ease); cursor: zoom-in; }
.gal .g-tall img { aspect-ratio: 3/4; }
.gal figure:hover img { transform: scale(1.045); }
.gal figcaption { position: absolute; left: 0; bottom: 0; padding: 10px 14px; font-size: 12px; letter-spacing: .04em; color: #F4F2EC; background: linear-gradient(180deg, transparent, rgba(18,17,14,.6)); width: 100%; opacity: 0; transform: translateY(6px); transition: .4s var(--ease); }
.gal figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* smaller works grid */
.works { margin-top: clamp(56px, 9vw, 110px); display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.5vw, 20px); }
.work { position: relative; overflow: hidden; border-radius: var(--r); background: var(--paper-3); }
.work img { aspect-ratio: 3/4; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); cursor: zoom-in; }
.work:hover img { transform: scale(1.05); }
.work__cap { position: absolute; inset: auto 0 0 0; padding: 16px; background: linear-gradient(180deg, transparent, rgba(18,17,14,.72)); color: #F4F2EC; }
.work__cap b { font-family: var(--ff-disp); font-size: 19px; font-weight: 500; display: block; }
.work__cap span { font-size: 12.5px; opacity: .85; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing { background: var(--paper); }
.tiers { margin-top: clamp(40px, 6vw, 64px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.tier { border: 1px solid var(--line); border-radius: var(--r); padding: clamp(28px, 2.6vw, 40px); display: flex; flex-direction: column; transition: border-color .35s var(--ease), transform .35s var(--ease); }
.tier:hover { border-color: var(--ink); }
.tier--feature { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.tier--feature .tier__price, .tier--feature h3 { color: var(--on-accent); }
.tier__tag { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; opacity: .7; }
.tier h3 { font-family: var(--ff-disp); font-size: clamp(25px, 3vw, 33px); font-weight: 500; margin-top: 8px; line-height: 1.08; }
.tier__price { margin-top: 18px; font-family: var(--ff-disp); font-size: 30px; font-weight: 600; }
.tier__price small { font-family: var(--ff-sans); font-size: 14px; font-weight: 400; opacity: .7; }
.tier ul { list-style: none; padding: 0; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.tier li { font-size: 15px; padding-left: 26px; position: relative; line-height: 1.4; }
.tier li::before { content: ""; position: absolute; left: 0; top: .58em; width: 12px; height: 1.5px; background: var(--accent); }
.tier--feature li::before { background: var(--on-accent); }
.tier .btn { margin-top: auto; justify-content: center; }
.tier--feature .btn { background: var(--on-accent); color: var(--accent-2); }
.tier--feature .btn:hover { background: #fff; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--paper-2); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.contact__intro h2 { font-family: var(--ff-disp); font-weight: 500; font-size: clamp(34px, 5.2vw, 58px); line-height: 1.04; }
.contact__intro .lead { margin-top: 22px; }
.contact__cards { margin-top: 40px; display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--line); }
.contact__cards a, .contact__cards div { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); transition: padding-left .35s var(--ease); }
.contact__cards a:hover { padding-left: 10px; }
.contact__cards .k { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.contact__cards .v { font-family: var(--ff-disp); font-size: 22px; font-weight: 500; }

.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(26px, 3vw, 40px); }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 500; letter-spacing: .02em; color: var(--ink-soft); }
.field input, .field textarea { background: var(--field); border: 1px solid var(--line); border-radius: var(--r); padding: 14px 16px; font-size: 16px; color: var(--ink); transition: border-color .25s var(--ease); width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 96px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { margin-top: 14px; font-size: 12.5px; color: var(--ink-mute); line-height: 1.5; }
.form__note a { text-decoration: underline; text-underline-offset: 2px; }
.form__status { margin-top: 14px; font-size: 14.5px; display: none; padding: 12px 14px; border-radius: var(--r); }
.form__status.show { display: block; }
.form__status.ok { background: color-mix(in srgb, var(--accent) 16%, var(--paper)); color: var(--accent-2); }
.form__status.err { background: color-mix(in srgb, #b4472f 14%, var(--paper)); color: #9a3a26; }
@media (prefers-color-scheme: dark) { .form__status.ok { color: var(--accent-2); } .form__status.err { color: #e8a08e; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #131210; color: #E8E4DA; padding-block: clamp(56px, 8vw, 96px) 36px; }
@media (prefers-color-scheme: dark) { .site-footer { background: #0D0C0A; } }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(232,228,218,.14); }
.footer__brand { font-family: var(--ff-disp); font-size: clamp(30px, 4vw, 46px); font-weight: 600; letter-spacing: .1em; }
.footer__brand + p { margin-top: 16px; color: #ABA596; max-width: 34ch; font-size: 15px; }
.footer__col h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #807B6E; margin-bottom: 16px; font-weight: 500; }
.footer__col a, .footer__col p { display: block; color: #D8D3C8; font-size: 15.5px; padding: 5px 0; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 13px; color: #807B6E; }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox { position: fixed; inset: 0; z-index: 80; background: rgba(13,12,10,.94); display: none; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 56px); }
.lightbox.show { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: var(--r); }
.lightbox__close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border: 1px solid rgba(244,242,236,.35); border-radius: var(--r); color: #F4F2EC; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.lightbox__close:hover { background: rgba(244,242,236,.1); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border: 1px solid rgba(244,242,236,.3); border-radius: var(--r); color: #F4F2EC; display: flex; align-items: center; justify-content: center; font-size: 24px; transition: background-color .2s; }
.lightbox__nav:hover { background: rgba(244,242,236,.12); }
.lightbox__nav.prev { left: 18px; } .lightbox__nav.next { right: 18px; }
.lightbox__cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: #C9C4B8; font-size: 13px; letter-spacing: .04em; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .gal img, .work img, .service-row, .step, .contact__cards a { transition: none !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .works { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav--left, .nav--right { display: none; }
  .menu-toggle { display: flex; }
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .brand { grid-column: 1; justify-self: start; }
  .menu-toggle { grid-column: 3; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media img { aspect-ratio: 4/3; }
  .tiers { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 40px 1fr; }
  .service-row__desc { grid-column: 1 / -1; }
  .gal--a, .gal--b, .gal--c { grid-template-columns: 1fr 1fr; }
  .gal--a .g-tall { grid-row: auto; }
  .project__head { flex-direction: column; align-items: flex-start; }
  .project__meta { text-align: left; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .process__grid { grid-template-columns: 1fr; }
  .works { grid-template-columns: 1fr 1fr; }
  .gal--b { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
}
