:root {
  --ink: #161713;
  --muted: #686a61;
  --line: #dedfd6;
  --paper: #f4f3ed;
  --white: #ffffff;
  --accent: #f2be17;
  --accent-dark: #dba800;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  height: 82px;
  padding: 0 clamp(24px, 5vw, 84px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #fff;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #e7e7e1;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-name { font-size: 25px; font-weight: 820; letter-spacing: -1.2px; }
.brand-name span { color: #b88900; }
.brand-mark { position: relative; display: block; width: 40px; height: 34px; }
.brand-mark::before, .brand-mark::after {
  content: ""; position: absolute; height: 9px; background: var(--accent); transform: skewY(-25deg);
}
.brand-mark::before { width: 31px; left: 0; top: 5px; }
.brand-mark::after { width: 27px; right: 0; top: 17px; background: var(--ink); }
.brand-mark i { position: absolute; width: 8px; height: 15px; background: var(--accent); left: 2px; top: 15px; transform: skewY(-25deg); }
.brand-mark b { position: absolute; width: 7px; height: 11px; background: var(--ink); right: 0; top: 3px; transform: skewY(-25deg); }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.35vw, 36px); margin-left: auto; }
.nav a { color: #3f403b; font-size: 14px; font-weight: 600; transition: color .2s; }
.nav a:hover { color: #a87d00; }
.header-cta {
  background: var(--ink); color: #fff; padding: 15px 20px; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 24px; transition: transform .2s, background .2s;
}
.header-cta:hover { background: #2a2b25; transform: translateY(-1px); }
.header-cta span { color: var(--accent); font-size: 18px; }
.menu-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 0; }

.hero {
  min-height: calc(100svh - 82px);
  max-height: 840px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #2b2c28;
}
.hero-image {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(115deg, rgba(32,33,29,.12), rgba(32,33,29,.03)),
    url("images/hero-floor-screed.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,18,15,.96) 0%, rgba(17,18,15,.78) 34%, rgba(17,18,15,.12) 69%, rgba(17,18,15,.24) 100%); }
.hero-content { position: relative; z-index: 2; width: min(760px, 74%); padding: 70px clamp(24px, 7vw, 116px) 145px; }
.eyebrow { display: flex; align-items: center; gap: 13px; color: #e4e4dc; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 3px; background: var(--accent); }
.hero h1 { margin: 25px 0 25px; font-size: clamp(52px, 6.7vw, 96px); line-height: .94; letter-spacing: -.065em; font-weight: 790; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-content > p { max-width: 550px; color: #d6d7d0; font-size: 18px; line-height: 1.65; margin: 0 0 34px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.button { min-height: 56px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; font-size: 14px; font-weight: 750; transition: .2s; }
.button-primary { color: #171713; background: var(--accent); }
.button-primary:hover { background: #ffd443; transform: translateY(-2px); }
.button-primary span { font-size: 18px; }
.button-ghost { border: 1px solid rgba(255,255,255,.32); color: #fff; gap: 12px; }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.button-ghost i { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: #fff; color: #1c1d19; font-size: 9px; font-style: normal; padding-left: 2px; }

.hero-stats {
  position: absolute; z-index: 3; bottom: 0; right: 0; width: min(760px, 63vw); min-height: 106px;
  background: rgba(24,25,22,.94); backdrop-filter: blur(12px); display: grid; grid-template-columns: repeat(3, 1fr);
}
.hero-stats div { padding: 25px 28px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,.11); }
.hero-stats strong { font-size: clamp(20px, 2.2vw, 29px); color: #fff; letter-spacing: -.04em; }
.hero-stats span { margin-top: 4px; color: #aeb0a7; font-size: 12px; }

.section { padding: 110px clamp(24px, 7vw, 116px); }
.services-preview { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 80px; align-items: end; margin-bottom: 56px; }
.kicker { display: flex; align-items: center; gap: 12px; color: #8a6800; font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.kicker::before { content: ""; width: 28px; height: 3px; background: var(--accent); }
.section-heading h2 { margin: 17px 0 0; font-size: clamp(40px, 5vw, 68px); line-height: 1; letter-spacing: -.055em; }
.section-heading > p { color: var(--muted); line-height: 1.75; margin: 0; max-width: 520px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 350px; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #f8f7f2; transition: background .25s, transform .25s; }
.service-card:hover { background: #fff; transform: translateY(-5px); box-shadow: 0 24px 60px rgba(25,25,19,.08); z-index: 1; }
.service-number { color: #989990; font-size: 11px; font-weight: 700; }
.service-icon { height: 66px; width: 74px; margin: 32px 0 27px; position: relative; }
.service-icon span { position: absolute; width: 62px; height: 16px; background: var(--accent); bottom: 7px; left: 3px; transform: skewY(-8deg); }
.service-icon i { position: absolute; width: 45px; height: 38px; border: 3px solid var(--ink); border-bottom: 0; left: 15px; top: 2px; transform: skewY(-8deg); }
.service-card h3 { margin: 0 0 15px; font-size: 23px; letter-spacing: -.035em; }
.service-card p { color: var(--muted); line-height: 1.65; font-size: 14px; margin: 0 0 25px; }
.service-card a { position: absolute; bottom: 32px; left: 38px; right: 38px; display: flex; justify-content: space-between; font-size: 13px; font-weight: 750; padding-top: 17px; border-top: 1px solid var(--line); }
.service-card a span { color: #a77d00; font-size: 18px; }

.blog-preview { background: #eeede6; }
.blog-preview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.blog-preview-card { background: #fff; border: 1px solid var(--line); min-width: 0; transition: transform .25s, box-shadow .25s; }
.blog-preview-card:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(25,25,19,.08); }
.blog-preview-image { display: block; height: 245px; overflow: hidden; background: #dddcd4; }
.blog-preview-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s; }
.blog-preview-card:hover .blog-preview-image img { transform: scale(1.035); }
.blog-preview-body { padding: 28px; }
.blog-preview-body > span { color: #8a6800; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.blog-preview-body h3 { margin: 13px 0 13px; font-size: 23px; line-height: 1.18; letter-spacing: -.035em; }
.blog-preview-body p { min-height: 69px; margin: 0 0 25px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.blog-preview-link { display: flex; justify-content: space-between; gap: 18px; padding-top: 17px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 750; line-height: 1.45; }
.blog-preview-link b { color: #a77d00; font-size: 18px; }
.all-articles-link { margin-top: 28px; display: inline-flex; align-items: center; gap: 28px; border-bottom: 1px solid #babbb3; padding: 0 0 12px; font-size: 14px; font-weight: 750; }
.all-articles-link span { color: #a77d00; font-size: 19px; }

.works-section { padding: 110px clamp(24px, 5vw, 84px); background: #181915; color: #fff; }
.works-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 80px; align-items: end; margin-bottom: 55px; }
.works-heading h2 { margin: 18px 0 0; font-size: clamp(48px, 6vw, 82px); line-height: .95; letter-spacing: -.06em; }
.works-intro > p { max-width: 560px; margin: 0 0 25px; color: #aeb0a7; font-size: 15px; line-height: 1.7; }
.works-intro > div { display: flex; flex-wrap: wrap; gap: 9px; }
.works-intro > div span { padding: 9px 12px; border: 1px solid #3b3d36; color: #c4c6bd; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.works-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 225px; grid-auto-flow: dense; gap: 8px; }
.work-card { position: relative; min-width: 0; padding: 0; border: 0; background: #2b2c27; color: #fff; overflow: hidden; cursor: zoom-in; text-align: left; }
.work-card.work-wide { grid-column: span 2; }
.work-card.work-tall { grid-row: span 2; }
.work-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.work-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,11,9,.02) 35%, rgba(10,11,9,.88) 100%); transition: background .3s; }
.work-card:hover img { transform: scale(1.045); filter: saturate(1.08); }
.work-card:hover .work-overlay { background: linear-gradient(180deg, rgba(10,11,9,.06) 15%, rgba(10,11,9,.92) 100%); }
.work-number { position: absolute; top: 18px; left: 18px; display: grid; place-items: center; width: 34px; height: 34px; background: rgba(20,21,18,.82); color: var(--accent); font-size: 9px; font-weight: 800; backdrop-filter: blur(8px); }
.work-caption { position: absolute; left: 20px; right: 52px; bottom: 18px; display: grid; gap: 5px; }
.work-caption strong { font-size: 16px; letter-spacing: -.025em; }
.work-caption small { color: #b7b9b0; font-size: 10px; line-height: 1.4; }
.work-open { position: absolute; right: 18px; bottom: 18px; color: var(--accent); font-size: 19px; }
.works-cta { margin-top: 28px; padding: 28px 0 0; border-top: 1px solid #3a3c35; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.works-cta p { margin: 0; color: #d7d8d1; font-size: 18px; font-weight: 650; }

.lightbox { position: fixed; inset: 0; z-index: 100; padding: 30px 88px; display: grid; grid-template-columns: 60px minmax(0, 1fr) 60px; align-items: center; gap: 22px; background: rgba(9,10,8,.96); backdrop-filter: blur(12px); }
.lightbox figure { margin: 0; min-width: 0; display: grid; justify-items: center; }
.lightbox figure img { display: block; max-width: 100%; max-height: calc(100svh - 145px); width: auto; height: auto; object-fit: contain; box-shadow: 0 20px 70px rgba(0,0,0,.4); }
.lightbox figcaption { width: min(100%, 1050px); padding: 17px 0 0; display: flex; justify-content: space-between; gap: 30px; color: #fff; }
.lightbox figcaption > span { display: grid; gap: 5px; }
.lightbox figcaption strong { font-size: 17px; }
.lightbox figcaption small { color: #9fa198; font-size: 11px; }
.lightbox figcaption b { color: var(--accent); font-size: 12px; white-space: nowrap; }
.lightbox-close, .lightbox-arrow { border: 1px solid #41433c; background: rgba(30,31,27,.8); color: #fff; cursor: pointer; transition: .2s; }
.lightbox-close:hover, .lightbox-arrow:hover { background: var(--accent); border-color: var(--accent); color: #171713; }
.lightbox-close { position: absolute; top: 24px; right: 28px; width: 46px; height: 46px; font-size: 28px; font-weight: 300; }
.lightbox-arrow { width: 58px; height: 58px; font-size: 22px; }

.equipment-section { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 730px; background: #181915; color: #fff; }
.equipment-copy { padding: 110px clamp(38px, 7vw, 116px); display: flex; flex-direction: column; justify-content: center; }
.kicker-light { color: #e1bc3e; }
.equipment-copy h2, .process-heading h2, .request-copy h2 { margin: 22px 0 28px; font-size: clamp(45px, 5vw, 72px); line-height: .98; letter-spacing: -.06em; }
.equipment-copy h2 em { color: var(--accent); font-style: normal; }
.equipment-copy > p { color: #afb1a8; line-height: 1.75; max-width: 510px; margin: 0; }
.equipment-copy ul { padding: 0; margin: 35px 0 38px; list-style: none; display: grid; gap: 14px; }
.equipment-copy li { display: flex; gap: 13px; align-items: center; font-size: 14px; color: #e0e1da; }
.equipment-copy li span { display: grid; place-items: center; width: 23px; height: 23px; background: rgba(242,190,23,.13); color: var(--accent); font-size: 12px; }
.text-link { display: flex; justify-content: space-between; align-items: center; max-width: 290px; border-bottom: 1px solid #4c4e47; padding: 0 0 14px; font-size: 13px; font-weight: 750; }
.text-link span { color: var(--accent); font-size: 18px; }
.equipment-visual { position: relative; min-height: 680px; overflow: hidden; }
.equipment-photo { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,25,21,.42), transparent 38%), url("images/hero-floor-screed.png") 65% center/cover no-repeat; filter: saturate(.8) contrast(1.04); }
.equipment-badge { position: absolute; right: 0; bottom: 0; width: 245px; height: 170px; background: var(--accent); color: #171713; padding: 31px; display: flex; flex-direction: column; justify-content: center; }
.equipment-badge strong { font-size: 39px; line-height: 1; letter-spacing: -.05em; }
.equipment-badge span { margin-top: 10px; font-size: 12px; line-height: 1.45; font-weight: 650; }

.benefits-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.benefits-title { position: sticky; top: 50px; }
.benefits-title h2, .price-copy h2, .faq-section h2 { margin: 20px 0 0; font-size: clamp(42px, 4.4vw, 64px); line-height: 1.02; letter-spacing: -.055em; }
.benefit-list { border-top: 1px solid var(--line); }
.benefit-list article { display: grid; grid-template-columns: 68px 1fr; gap: 26px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.benefit-list article > span { width: 42px; height: 42px; display: grid; place-items: center; background: var(--accent); color: #171713; font-size: 11px; font-weight: 800; }
.benefit-list h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -.03em; }
.benefit-list p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.process-section { padding: 110px clamp(24px, 7vw, 116px); background: #21221e; color: #fff; }
.process-heading { display: grid; grid-template-columns: .8fr 1fr .7fr; gap: 60px; align-items: end; margin-bottom: 68px; }
.process-heading h2 { margin: 0; }
.process-heading > span { align-self: start; }
.process-heading > p { margin: 0; color: #aeb0a7; line-height: 1.7; }
.process-steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.process-steps li { position: relative; padding: 0 32px 0 0; min-height: 225px; border-top: 1px solid #494b43; }
.process-steps li > span { position: absolute; top: -27px; left: 0; color: #84867e; font-size: 11px; }
.step-dot { width: 14px; height: 14px; background: var(--accent); position: absolute; left: 0; top: -7px; box-shadow: 0 0 0 7px #21221e; }
.process-steps h3 { margin: 40px 0 14px; font-size: 19px; }
.process-steps p { margin: 0; color: #9ea098; line-height: 1.65; font-size: 13px; }

.price-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 130px); align-items: center; }
.price-copy > p { color: var(--muted); line-height: 1.75; max-width: 520px; margin: 28px 0 34px; }
.included { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 24px; font-size: 13px; }
.included strong { grid-column: 1 / -1; margin-bottom: 4px; }
.included div { color: #575950; }
.included span { color: #a77d00; margin-right: 7px; }
.calculator { background: #fff; padding: clamp(28px, 4vw, 52px); box-shadow: 0 24px 70px rgba(25,25,19,.08); border-top: 5px solid var(--accent); }
.calculator-head { display: flex; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 32px; }
.calculator-head span { font-size: 20px; font-weight: 750; letter-spacing: -.03em; }
.calculator-head b { color: #9d9e96; font-size: 11px; }
.calculator > label { display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 700; }
.calculator > label strong { font-size: 25px; }
.calculator input[type="range"] { appearance: none; width: 100%; height: 4px; margin: 28px 0 8px; background: linear-gradient(90deg, var(--accent) var(--range), #e1e1da var(--range)); outline: none; }
.calculator input[type="range"]::-webkit-slider-thumb { appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #171713; border: 5px solid var(--accent); cursor: pointer; }
.range-labels { display: flex; justify-content: space-between; color: #999b92; font-size: 10px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0; }
.field-row label { display: grid; gap: 9px; font-size: 11px; font-weight: 700; color: #62645c; }
.field-row select { width: 100%; border: 1px solid var(--line); background: #f7f7f3; padding: 15px 13px; color: var(--ink); outline: 0; }
.calculator-button { width: 100%; }
.calculator > small { display: block; margin-top: 13px; text-align: center; color: #96988f; font-size: 10px; }

.quality-banner { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 540px; background: #181915; color: #fff; }
.quality-image { min-height: 480px; background: linear-gradient(90deg, transparent 55%, rgba(24,25,21,.7)), url("images/hero-floor-screed.png") left center/cover no-repeat; }
.quality-copy { padding: 80px clamp(30px, 6vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.quality-copy blockquote { margin: 30px 0; font-size: clamp(29px, 3.2vw, 45px); line-height: 1.13; letter-spacing: -.045em; font-weight: 680; }
.quality-copy > p { color: #aeb0a7; line-height: 1.7; }

.payment-section { background: #efeee7; }
.payment-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; margin-bottom: 56px; }
.payment-heading h2 { margin: 19px 0 0; font-size: clamp(43px, 5vw, 68px); line-height: 1; letter-spacing: -.055em; }
.legal-proof { display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--line); padding: 23px 25px; box-shadow: 0 14px 35px rgba(25,25,19,.05); }
.legal-proof-icon { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; background: var(--accent); font-size: 19px; font-weight: 850; }
.legal-proof div { display: grid; gap: 4px; }
.legal-proof strong { font-size: 14px; }
.legal-proof small { color: var(--muted); font-size: 11px; line-height: 1.45; }
.client-types { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d2d3ca; border-left: 1px solid #d2d3ca; }
.client-types article { min-height: 315px; position: relative; padding: 34px; border-right: 1px solid #d2d3ca; border-bottom: 1px solid #d2d3ca; background: #f8f7f2; }
.client-type-number { color: #9a9b93; font-size: 10px; font-weight: 750; }
.client-type-icon { width: 58px; height: 58px; margin: 29px 0 25px; display: grid; place-items: center; background: var(--ink); color: var(--accent); font-size: 13px; font-weight: 850; letter-spacing: -.03em; box-shadow: 8px 8px 0 var(--accent); }
.client-types h3 { margin: 0 0 14px; font-size: 21px; letter-spacing: -.03em; }
.client-types p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.68; }
.official-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 46px; background: #fff; box-shadow: 0 25px 70px rgba(25,25,19,.07); }
.payment-methods, .closing-documents { padding: clamp(35px, 5vw, 70px); }
.payment-methods { background: #20211d; color: #fff; }
.payment-methods h3, .closing-documents h3 { margin: 20px 0 32px; font-size: clamp(30px, 3vw, 42px); line-height: 1.05; letter-spacing: -.045em; }
.method-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #42443d; border: 1px solid #42443d; }
.method-list > div { min-height: 142px; display: grid; grid-template-columns: 42px 1fr; grid-template-rows: auto auto; column-gap: 13px; align-content: center; background: #272824; padding: 22px; }
.method-list > div > span { grid-row: 1 / 3; width: 42px; height: 42px; display: grid; place-items: center; background: rgba(242,190,23,.12); color: var(--accent); font-size: 11px; font-weight: 850; }
.method-list strong { align-self: end; font-size: 14px; }
.method-list small { color: #8f9188; font-size: 10px; line-height: 1.45; margin-top: 5px; }
.invoice-button { margin-top: 25px; width: 100%; }
.closing-documents ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.closing-documents li { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.closing-documents li b { width: 34px; height: 34px; display: grid; place-items: center; background: var(--accent); font-size: 10px; }
.closing-documents li strong { font-size: 16px; }
.closing-documents li p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.requisites-card { margin-top: 26px; border: 1px solid #d2d3ca; background: #f8f7f2; }
.requisites-card > summary { padding: 25px 30px; display: flex; align-items: center; justify-content: space-between; gap: 25px; list-style: none; cursor: pointer; }
.requisites-card > summary::-webkit-details-marker { display: none; }
.requisites-card > summary > span { display: grid; gap: 4px; }
.requisites-card > summary b { font-size: 16px; }
.requisites-card > summary small { color: var(--muted); font-size: 11px; }
.requisites-card > summary i { width: 40px; height: 40px; display: grid; place-items: center; background: var(--ink); color: var(--accent); font-size: 24px; font-style: normal; font-weight: 300; transition: transform .2s; }
.requisites-card[open] > summary i { transform: rotate(45deg); }
.requisites-content { border-top: 1px solid #d2d3ca; padding: 30px; display: grid; grid-template-columns: 1.45fr .55fr; gap: 40px; }
.requisites-content dl { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #d8d9d0; border: 1px solid #d8d9d0; }
.requisites-content dl > div { background: #fff; padding: 17px; min-width: 0; }
.requisites-content dt { color: #8b8d84; font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.requisites-content dd { margin: 7px 0 0; font-size: 12px; line-height: 1.5; overflow-wrap: anywhere; }
.requisites-contacts { align-self: start; display: grid; gap: 13px; padding: 23px; background: #20211d; color: #fff; }
.requisites-contacts > span { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 5px; }
.requisites-contacts a { font-size: 12px; line-height: 1.45; overflow-wrap: anywhere; }
.requisites-contacts a:hover { color: var(--accent); }

.faq-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 0 3px; }
.faq-list summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; cursor: pointer; font-size: 17px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 25px; font-weight: 300; color: #9a7400; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -5px 45px 25px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.request-section { margin: 0 clamp(20px, 4vw, 65px) 65px; display: grid; grid-template-columns: 1fr .85fr; background: #20211d; color: #fff; }
.request-copy { padding: 85px clamp(35px, 6vw, 88px); background: linear-gradient(135deg, #20211d, #171814); }
.request-copy h2 { margin-bottom: 24px; }
.request-copy > p { max-width: 500px; color: #aeb0a7; line-height: 1.7; }
.domain-chip { margin-top: 38px; display: inline-flex; gap: 10px; align-items: center; color: #d7d8d0; font-size: 13px; }
.domain-chip span { color: var(--accent); font-size: 9px; }
.request-form { padding: 74px clamp(30px, 5vw, 70px); background: #2b2c27; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.request-form label { display: grid; gap: 9px; color: #b5b7ae; font-size: 11px; font-weight: 700; }
.request-form input, .request-form select { border: 0; border-bottom: 1px solid #53554d; color: #fff; background: transparent; padding: 12px 0 14px; outline: 0; font-size: 15px; border-radius: 0; }
.request-form select { color-scheme: dark; cursor: pointer; }
.request-form input:focus { border-color: var(--accent); }
.request-form input::placeholder { color: #777970; }
.request-form .button { margin-top: 8px; border: 0; cursor: pointer; }
.request-form small { color: #777970; text-align: center; font-size: 9px; line-height: 1.5; }
.success-message { text-align: center; padding: 30px 0; }
.success-message > span { margin: 0 auto 20px; display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; color: #171713; background: var(--accent); font-size: 24px; }
.success-message h3 { font-size: 30px; margin: 0 0 12px; }
.success-message p { color: #aaa; line-height: 1.6; }
.success-message button { color: var(--accent); background: none; border: 0; border-bottom: 1px solid #8a6e12; padding: 6px 0; cursor: pointer; }

.site-footer { background: #11120f; color: #878980; font-size: 11px; }
.footer-main { min-height: 120px; padding: 28px clamp(24px, 5vw, 84px); display: flex; gap: 34px; align-items: center; }
.brand-footer { color: #fff; }
.footer-main p { max-width: 220px; margin-right: auto; }
.footer-main nav { display: flex; gap: 24px; color: #bbbdb5; }
.footer-main > span { border-left: 1px solid #33342f; padding-left: 30px; white-space: nowrap; }
.footer-legal { padding: 18px clamp(24px, 5vw, 84px); border-top: 1px solid #292a26; color: #6f7169; font-size: 10px; line-height: 1.6; }
.footer-legal a { color: #d9d9d2; font-weight: 700; }

/* Official status and direct messenger contacts */
.official-strip {
  margin: 0 clamp(20px, 4vw, 65px);
  padding: 38px clamp(26px, 5vw, 70px);
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--accent);
  color: #171814;
}
.official-strip-check {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  background: #171814;
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
}
.official-strip .kicker { color: #5f4a00; }
.official-strip .kicker::before { background: #171814; }
.official-strip h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: -.05em;
}
.contact-panel {
  padding: 58px clamp(26px, 5vw, 62px);
  background: #2b2c27;
  display: grid;
  align-content: center;
  gap: 12px;
}
.contact-panel-title {
  margin-bottom: 8px;
  color: #b5b7ae;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-button {
  min-height: 74px;
  padding: 12px 17px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255,255,255,.11);
  background: #343630;
  color: #fff;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.contact-button:hover { transform: translateX(5px); border-color: rgba(255,255,255,.3); }
.contact-button > span:nth-child(2) { display: grid; gap: 4px; }
.contact-button strong { font-size: 16px; }
.contact-button small { color: #aeb0a7; font-size: 10px; }
.contact-button > b { color: #c9cbc1; font-size: 18px; }
.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.contact-whatsapp .contact-icon, .floating-whatsapp { background: #25d366; }
.contact-telegram .contact-icon, .floating-telegram { background: #279fda; }
.contact-max .contact-icon, .floating-max { background: #6658ff; font-size: 10px; }
.contact-phone .contact-icon, .floating-phone { background: var(--accent); color: #171814; }
.max-helper { margin: 8px 0 0; color: #8e9088; font-size: 10px; line-height: 1.5; }
.floating-contacts {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 8px;
}
.floating-contact {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 9px 25px rgba(0,0,0,.22);
  font-size: 12px;
  font-weight: 900;
  transition: transform .2s ease;
}
.floating-contact:hover { transform: translateY(-3px) scale(1.04); }

/* Blog and SEO article pages */
.blog-page, .article-page { min-height: 100vh; background: var(--paper); }
.blog-site-header { height: 82px; padding: 0 clamp(24px, 5vw, 84px); display: flex; align-items: center; gap: 34px; background: #fff; border-bottom: 1px solid #e7e7e1; }
.blog-site-header nav { margin-left: auto; display: flex; align-items: center; gap: clamp(20px, 2.4vw, 36px); }
.blog-site-header nav a { color: #42433e; font-size: 13px; font-weight: 650; }
.blog-site-header nav a:hover, .blog-site-header nav a.active { color: #9f7700; }
.blog-hero { min-height: 510px; padding: 95px clamp(24px, 7vw, 116px); display: grid; grid-template-columns: 1.1fr .6fr; align-items: end; gap: 80px; background: radial-gradient(circle at 80% 25%, rgba(242,190,23,.15), transparent 28%), #1b1c18; color: #fff; }
.blog-hero h1 { margin: 24px 0 0; font-size: clamp(58px, 7.5vw, 105px); line-height: .9; letter-spacing: -.07em; }
.blog-hero h1 em { display: inline-block; color: var(--accent); font-style: normal; }
.blog-hero > p { margin: 0 0 7px; color: #b5b7af; font-size: 16px; line-height: 1.75; }
.blog-catalog { padding: 105px clamp(24px, 7vw, 116px); }
.blog-catalog-head { display: grid; grid-template-columns: 1fr .65fr; gap: 70px; align-items: end; margin-bottom: 55px; }
.blog-catalog-head span { color: #8a6800; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.blog-catalog-head h2 { margin: 15px 0 0; font-size: clamp(42px, 5vw, 68px); line-height: 1; letter-spacing: -.055em; }
.blog-catalog-head > p { margin: 0; color: var(--muted); line-height: 1.75; }
.blog-catalog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.blog-card { display: grid; grid-template-columns: .72fr 1fr; min-width: 0; min-height: 360px; background: #fff; border: 1px solid var(--line); }
.blog-card-featured { grid-column: 1 / -1; grid-template-columns: 1.2fr 1fr; min-height: 490px; }
.blog-card-image { position: relative; display: block; min-height: 100%; overflow: hidden; background: #deded7; }
.blog-card-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-image img { transform: scale(1.035); }
.blog-card-image > span { position: absolute; top: 20px; left: 20px; width: 40px; height: 40px; display: grid; place-items: center; color: var(--accent); background: rgba(20,21,18,.86); font-size: 10px; font-weight: 800; }
.blog-card-content { padding: clamp(28px, 3vw, 45px); display: flex; flex-direction: column; justify-content: center; }
.blog-card-content small { color: #8d6b00; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.blog-card-content h2 { margin: 15px 0; font-size: clamp(23px, 2.4vw, 36px); line-height: 1.12; letter-spacing: -.045em; }
.blog-card:not(.blog-card-featured) .blog-card-content h2 { font-size: clamp(21px, 1.75vw, 28px); }
.blog-card-content > p { margin: 0 0 24px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.blog-card-link { margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; font-size: 12px; font-weight: 750; line-height: 1.45; }
.blog-card-link span { color: #a77d00; font-size: 18px; }
.blog-contact-cta, .article-cta { margin: 0 clamp(20px, 4vw, 65px) 65px; padding: 65px clamp(30px, 6vw, 85px); display: flex; align-items: center; justify-content: space-between; gap: 60px; background: #20211d; color: #fff; }
.blog-contact-cta > div, .article-cta > div { max-width: 720px; }
.blog-contact-cta > div > span, .article-cta > div > span { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.blog-contact-cta h2, .article-cta h2 { margin: 14px 0 13px; font-size: clamp(33px, 4vw, 54px); line-height: 1.02; letter-spacing: -.05em; }
.blog-contact-cta p, .article-cta p { margin: 0; color: #aaaCa4; line-height: 1.7; }
.blog-footer { min-height: 110px; padding: 28px clamp(24px, 5vw, 84px); display: flex; align-items: center; gap: 34px; background: #11120f; color: #8b8d84; font-size: 11px; }
.blog-footer p { max-width: 390px; margin-right: auto; }
.blog-footer > a:not(.brand) { color: #c3c4be; }

.article-hero { padding: 72px clamp(24px, 15vw, 250px) 62px; background: #1b1c18; color: #fff; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: #8f9189; font-size: 11px; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs b { color: #babcb4; font-weight: 600; }
.article-meta { margin: 62px 0 22px; display: flex; gap: 9px; flex-wrap: wrap; }
.article-meta span { padding: 8px 11px; border: 1px solid #3a3c35; color: #c2c4bb; font-size: 9px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.article-meta span:first-child { border-color: var(--accent); color: var(--accent); }
.article-hero h1 { max-width: 1100px; margin: 0; font-size: clamp(46px, 6vw, 82px); line-height: .98; letter-spacing: -.06em; }
.article-hero > p { max-width: 850px; margin: 27px 0 0; color: #b6b8b0; font-size: 17px; line-height: 1.7; }
.article-cover { margin: 0; height: min(680px, 62vw); min-height: 390px; position: relative; background: #292a25; }
.article-cover img { width: 100%; height: 100%; display: block; object-fit: cover; }
.article-cover figcaption { position: absolute; right: 24px; bottom: 20px; padding: 10px 13px; color: #ddd; background: rgba(17,18,15,.78); font-size: 10px; backdrop-filter: blur(7px); }
.article-layout { padding: 95px clamp(24px, 12vw, 190px); display: grid; grid-template-columns: 240px minmax(0, 760px); justify-content: center; align-items: start; gap: clamp(50px, 8vw, 120px); }
.article-toc { position: sticky; top: 35px; padding: 24px; border-top: 4px solid var(--accent); background: #fff; box-shadow: 0 15px 40px rgba(25,25,19,.06); }
.article-toc > strong { font-size: 13px; }
.article-toc ol { margin: 17px 0 0; padding: 0 0 0 17px; color: #96988f; }
.article-toc li { padding: 7px 0 7px 4px; }
.article-toc a { color: #62645c; font-size: 11px; line-height: 1.45; }
.article-toc a:hover { color: #9a7300; }
.article-content { min-width: 0; }
.article-lead { margin: 0 0 62px; padding-left: 27px; border-left: 5px solid var(--accent); font-size: 21px; line-height: 1.65; font-weight: 560; letter-spacing: -.015em; }
.article-content section { scroll-margin-top: 30px; margin: 0 0 62px; }
.article-section-number { display: inline-block; margin-bottom: 13px; color: #9a7300; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.article-content h2 { margin: 0 0 24px; font-size: clamp(30px, 3.2vw, 45px); line-height: 1.08; letter-spacing: -.045em; }
.article-content p { color: #53554e; font-size: 16px; line-height: 1.85; }
.article-content ul { margin: 25px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.article-content li { position: relative; padding: 16px 0 16px 29px; border-bottom: 1px solid var(--line); color: #4f514a; line-height: 1.65; }
.article-content li::before { content: "✓"; position: absolute; left: 0; color: #9c7600; font-weight: 800; }
.article-faq details { border-bottom: 1px solid var(--line); }
.article-faq summary { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 25px; list-style: none; cursor: pointer; font-weight: 720; }
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary span { color: #9c7600; font-size: 23px; font-weight: 350; }
.article-faq details p { margin: 0 40px 20px 0; font-size: 14px; }
.article-note { padding: 28px 30px; background: #eae8dd; border-left: 5px solid #22231f; }
.article-note strong { font-size: 13px; }
.article-note p { margin: 8px 0 0; font-size: 13px; line-height: 1.7; }
.related-articles { padding: 90px clamp(24px, 7vw, 116px); background: #eae9e1; }
.related-articles > div:first-child { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 38px; }
.related-articles h2 { max-width: 650px; margin: 15px 0 0; font-size: clamp(38px, 4.7vw, 63px); line-height: 1; letter-spacing: -.055em; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid #cecfc6; border-left: 1px solid #cecfc6; }
.related-grid article { min-height: 235px; padding: 30px; display: flex; flex-direction: column; border-right: 1px solid #cecfc6; border-bottom: 1px solid #cecfc6; background: #f5f4ee; }
.related-grid small { color: #8c6900; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.related-grid h3 { margin: 15px 0 25px; font-size: 21px; line-height: 1.2; letter-spacing: -.035em; }
.related-grid article > a { margin-top: auto; display: flex; justify-content: space-between; gap: 15px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 11px; font-weight: 750; line-height: 1.4; }
.related-grid article > a span { color: #a77d00; font-size: 17px; }

@media (max-width: 1180px) {
  .site-header { height: 70px; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav { display: none; position: absolute; top: 70px; left: 0; right: 0; padding: 24px; background: #fff; flex-direction: column; align-items: flex-start; box-shadow: 0 18px 34px rgba(0,0,0,.12); }
  .nav-open { display: flex; }
  .header-cta { display: none; }
}

@media (max-width: 980px) {
  .site-header { height: 70px; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav { display: none; position: absolute; top: 70px; left: 0; right: 0; padding: 24px; background: #fff; flex-direction: column; align-items: flex-start; box-shadow: 0 18px 34px rgba(0,0,0,.12); }
  .nav-open { display: flex; }
  .header-cta { display: none; }
  .hero { min-height: 760px; }
  .hero-content { width: 90%; padding-bottom: 190px; }
  .hero-stats { width: 100%; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .blog-preview-grid { grid-template-columns: 1fr 1fr; }
  .blog-preview-card:last-child { grid-column: 1 / -1; }
  .works-heading { grid-template-columns: 1fr; gap: 28px; }
  .works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .equipment-section { grid-template-columns: 1fr; }
  .equipment-visual { min-height: 520px; }
  .benefits-section, .price-section, .faq-section { grid-template-columns: 1fr; gap: 55px; }
  .benefits-title { position: static; }
  .process-heading { grid-template-columns: 1fr 1fr; }
  .process-heading > span { grid-column: 1 / -1; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 50px 0; }
  .quality-banner, .request-section { grid-template-columns: 1fr; }
  .quality-image { min-height: 440px; }
  .payment-heading { grid-template-columns: 1fr; gap: 32px; }
  .official-grid { grid-template-columns: 1fr; }
  .requisites-content { grid-template-columns: 1fr; }
  .footer-main { flex-wrap: wrap; }
  .footer-main p { margin-right: 0; }
  .footer-main nav { margin-left: auto; }
  .lightbox { padding: 30px 20px; grid-template-columns: 48px minmax(0, 1fr) 48px; gap: 12px; }
  .lightbox-arrow { width: 46px; height: 52px; }
  .blog-site-header .header-cta { display: none; }
  .blog-site-header nav { margin-left: auto; }
  .blog-hero { grid-template-columns: 1fr; gap: 35px; }
  .blog-catalog-head { grid-template-columns: 1fr; gap: 25px; }
  .blog-card, .blog-card-featured { grid-column: auto; grid-template-columns: 1fr; min-height: 0; }
  .blog-card-featured { grid-column: 1 / -1; }
  .blog-card-image { height: 310px; }
  .article-hero { padding-left: clamp(24px, 8vw, 80px); padding-right: clamp(24px, 8vw, 80px); }
  .article-layout { grid-template-columns: 1fr; padding-left: clamp(24px, 8vw, 80px); padding-right: clamp(24px, 8vw, 80px); }
  .article-toc { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding: 0 18px; }
  .brand-name { font-size: 22px; }
  .hero { min-height: 770px; align-items: flex-start; }
  .hero-content { width: 100%; padding: 80px 22px 260px; }
  .hero h1 { font-size: clamp(46px, 15vw, 63px); }
  .hero-content > p { font-size: 16px; }
  .hero-actions { align-items: stretch; }
  .button { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; min-height: 220px; }
  .hero-stats div { padding: 13px 24px; flex-direction: row; align-items: center; justify-content: space-between; border-left: 0; border-top: 1px solid rgba(255,255,255,.11); }
  .hero-stats strong { font-size: 21px; }
  .hero-stats span { margin: 0; text-align: right; }
  .section { padding: 78px 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .blog-preview-card:last-child { grid-column: auto; }
  .blog-preview-image { height: 225px; }
  .section-heading h2 { font-size: 43px; }
  .works-section { padding: 78px 14px; }
  .works-heading { padding: 0 6px; }
  .works-grid { grid-template-columns: 1fr; grid-auto-rows: 310px; }
  .work-card.work-wide { grid-column: auto; }
  .work-card.work-tall { grid-row: auto; }
  .works-cta { padding: 28px 6px 0; flex-direction: column; align-items: stretch; }
  .works-cta p { font-size: 16px; }
  .lightbox { padding: 74px 12px 24px; display: block; }
  .lightbox figure img { max-height: calc(100svh - 190px); }
  .lightbox figcaption { padding: 13px 4px 0; }
  .lightbox-arrow { position: absolute; bottom: 20px; width: 52px; height: 46px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 16px; right: 14px; }
  .equipment-copy { padding: 78px 22px; }
  .equipment-visual { min-height: 430px; }
  .equipment-badge { width: 195px; height: 135px; padding: 23px; }
  .equipment-badge strong { font-size: 31px; }
  .benefit-list article { grid-template-columns: 48px 1fr; gap: 15px; }
  .process-section { padding: 78px 20px; }
  .process-heading { grid-template-columns: 1fr; gap: 25px; }
  .process-steps { grid-template-columns: 1fr; gap: 44px; margin-top: 38px; }
  .process-steps li { min-height: auto; padding-bottom: 12px; }
  .field-row { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1fr; }
  .included strong { grid-column: auto; }
  .quality-banner { display: flex; flex-direction: column-reverse; }
  .quality-copy { padding: 72px 22px; }
  .quality-image { min-height: 330px; }
  .client-types { grid-template-columns: 1fr; }
  .client-types article { min-height: auto; }
  .method-list { grid-template-columns: 1fr; }
  .payment-methods, .closing-documents { padding: 48px 22px; }
  .requisites-card > summary { padding: 22px 18px; }
  .requisites-content { padding: 18px; gap: 18px; }
  .requisites-content dl { grid-template-columns: 1fr; }
  .faq-list summary { font-size: 15px; }
  .request-section { margin: 0; }
  .request-copy, .request-form { padding: 70px 22px; }
  .official-strip { margin: 0; padding: 32px 22px; }
  .official-strip-check { width: 52px; height: 52px; flex-basis: 52px; }
  .contact-panel { padding: 42px 18px; }
  .contact-button { min-height: 70px; padding: 10px 13px; grid-template-columns: 46px 1fr auto; gap: 11px; }
  .contact-button strong { font-size: 14px; }
  .floating-contacts { right: 10px; bottom: 10px; grid-template-columns: repeat(4, 44px); }
  .floating-contact { width: 44px; height: 44px; }
  .footer-main { flex-direction: column; align-items: flex-start; padding: 48px 22px; }
  .footer-main nav { margin-left: 0; flex-wrap: wrap; }
  .footer-main > span { border: 0; padding: 0; }
  .footer-legal { padding: 18px 22px; }
  .blog-site-header { height: auto; min-height: 70px; padding: 16px 18px; flex-wrap: wrap; gap: 14px; }
  .blog-site-header nav { order: 3; width: 100%; padding-top: 13px; border-top: 1px solid var(--line); justify-content: space-between; gap: 10px; }
  .blog-site-header nav a { font-size: 11px; }
  .blog-hero { min-height: 500px; padding: 75px 22px; }
  .blog-hero h1 { font-size: 51px; }
  .blog-catalog { padding: 75px 18px; }
  .blog-catalog-grid { grid-template-columns: 1fr; }
  .blog-card, .blog-card-featured { grid-column: auto; }
  .blog-card-image { height: 250px; }
  .blog-contact-cta, .article-cta { margin: 0; padding: 58px 22px; flex-direction: column; align-items: stretch; gap: 30px; }
  .blog-footer { padding: 42px 22px; flex-direction: column; align-items: flex-start; }
  .blog-footer p { margin-right: 0; }
  .article-hero { padding: 55px 22px; }
  .article-meta { margin-top: 42px; }
  .article-hero h1 { font-size: 43px; }
  .article-hero > p { font-size: 15px; }
  .article-cover { min-height: 310px; height: 72vw; }
  .article-cover figcaption { left: 12px; right: 12px; bottom: 12px; }
  .article-layout { padding: 65px 20px; gap: 45px; }
  .article-lead { font-size: 18px; }
  .related-articles { padding: 68px 18px; }
  .related-grid { grid-template-columns: 1fr; }
}
