:root {
  --blue: #006b3b;
  --blue-dark: #004a2c;
  --green: #006b3b;
  --green-dark: #004a2c;
  --green-soft: #e8f2ec;
  --ink: #202124;
  --muted: #5d655f;
  --line: #dfe7e2;
  --panel: #f7faf8;
  --steel: #9ba6a0;
  --white: #fff;
  --shadow: 0 16px 38px rgba(13, 57, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  background: #f8faf8;
  letter-spacing: 0;
  overflow-x: hidden;
}

body:has(dialog[open]) {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
  min-height: 104px;
  padding: 20px clamp(22px, 7vw, 86px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 238, 0.86);
  backdrop-filter: blur(12px);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 238px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  flex: 1;
  min-width: 0;
  color: #1b211e;
  font-size: 17px;
  font-weight: 500;
  text-transform: none;
}

.main-nav a,
.phone-link,
.footer a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.phone-link:hover,
.footer a:hover {
  color: var(--blue);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 5px;
  background: linear-gradient(180deg, #087a49, #005f38);
  box-shadow: 0 12px 26px rgba(0, 95, 56, 0.2);
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.phone-link svg,
.request-phone svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(0, 107, 59, 0.07), transparent 30%),
    linear-gradient(90deg, #fff 0%, #fff 52%, #edf3f1 52%, #edf3f1 100%);
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(235, 244, 241, 0.04)),
    url("assets/works/stairs-236.jpg") center right / cover no-repeat;
  clip-path: polygon(27% 0, 100% 0, 100% 100%, 0 100%);
  filter: saturate(0.9) contrast(1.04);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 44px));
  margin: 0 auto;
  padding: 114px 0 104px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  color: #202124;
  font-size: clamp(40px, 4.25vw, 56px);
  line-height: 1.18;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--green);
  overflow-wrap: normal;
}

.lead {
  max-width: 570px;
  margin: 30px 0 0;
  color: #303632;
  font-size: 21px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 34px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, #087a49, #005f38);
  box-shadow: 0 12px 24px rgba(0, 95, 56, 0.18);
}

.button-secondary {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
}

.button-light {
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
}

.section,
.process {
  padding: 54px 0 58px;
}

.section-inner {
  width: min(1280px, calc(100% - 44px));
  margin: 0 auto;
}

h2 {
  margin: 0 0 20px;
  color: #202124;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

h3 {
  margin: 0;
}

p {
  margin: 0;
  overflow-wrap: break-word;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 190px;
  padding: 26px 24px 22px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(31, 55, 78, 0.05);
}

.service-card svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  color: var(--blue);
}

.service-card h3 {
  min-height: 40px;
  color: #1d2a39;
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-card p {
  margin-top: 12px;
  color: #4d5968;
  font-size: 15px;
  line-height: 1.4;
}

.about-band {
  padding: 42px 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f8f6, #f1f5f2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-band h2 {
  color: var(--ink);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  text-align: left;
}

.benefit-grid article {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 16px;
  padding: 10px 28px;
  border-right: 1px solid var(--line);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-grid svg {
  width: 56px;
  height: 56px;
  margin: 0;
  color: var(--green);
}

.benefit-grid h3 {
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
}

.benefit-grid p {
  margin-top: 10px;
  color: #303632;
  font-size: 15px;
  line-height: 1.4;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.about-layout h2 {
  text-align: left;
}

.about-layout p {
  color: #4d5968;
  font-size: 18px;
  line-height: 1.6;
}

.about-layout p + p {
  margin-top: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.stats div {
  min-height: 132px;
  padding: 22px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.stats dt {
  color: var(--blue);
  font-size: 30px;
  font-weight: 800;
}

.stats dd {
  margin: 8px 0 0;
  color: #4d5968;
  font-size: 14px;
  line-height: 1.35;
}

.works {
  background: #fbfcfe;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 0;
  text-align: left;
}

.text-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-teasers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.teaser-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--line);
  box-shadow: 0 10px 28px rgba(31, 55, 78, 0.12);
}

.teaser-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  filter: saturate(1.03);
  transition: transform 220ms ease;
}

.teaser-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.teaser-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 40, 0.03), rgba(8, 24, 40, 0.72));
}

.teaser-card:hover img {
  transform: scale(1.04);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.work-item {
  height: 190px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: var(--line);
  box-shadow: 0 8px 22px rgba(31, 55, 78, 0.08);
  cursor: zoom-in;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.work-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 330px;
  padding: 80px 0 70px;
  color: var(--white);
  background: var(--green-dark);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 45, 27, 0.92), rgba(0, 75, 44, 0.68), rgba(0, 75, 44, 0.24)),
    var(--hero-image) center / cover no-repeat;
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.page-hero p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 20px;
  color: #edf4fb;
  font-size: 21px;
  line-height: 1.45;
}

.page-hero-about {
  --hero-image: url("assets/works/stairs-223.jpg");
}

.page-hero-services {
  --hero-image: url("assets/works/canopies-268.jpg");
}

.page-hero-works {
  --hero-image: url("assets/works/mmgn-332.jpg");
}

.page-hero-contacts {
  --hero-image: url("assets/works/railings-87.jpg");
}

.rich-text h2 {
  text-align: left;
}

.content-band {
  padding: 42px 0;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.split-note > div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.split-note h2 {
  text-align: left;
}

.split-note p,
.rich-text p {
  color: #4d5968;
  font-size: 18px;
  line-height: 1.6;
}

.service-detail-grid {
  display: grid;
  gap: 22px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.service-detail img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
}

.service-detail h2 {
  text-align: left;
}

.service-detail p {
  margin-bottom: 18px;
  color: #4d5968;
  font-size: 18px;
  line-height: 1.55;
}

.gallery-nav {
  position: sticky;
  top: 74px;
  z-index: 10;
  display: flex;
  gap: 10px;
  padding: 16px 0;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.gallery-nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.gallery-section {
  scroll-margin-top: 140px;
  padding: 38px 0 46px;
  border-top: 1px solid var(--line);
}

.gallery-section:nth-of-type(even) {
  background: #fbfcfe;
}

.category-header {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 20px;
}

.category-header h2 {
  margin: 0;
  text-align: left;
}

.category-header p {
  color: #4d5968;
  font-size: 18px;
  line-height: 1.5;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery-card {
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: var(--line);
  cursor: zoom-in;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.contact-grid > * {
  min-width: 0;
}

.contact-card,
.form-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.contact-card h2,
.form-panel h2 {
  text-align: left;
}

.contact-card a,
.contact-card p {
  display: block;
  margin-bottom: 12px;
  color: #4d5968;
  font-size: 18px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--blue);
}

.form-panel p {
  margin-bottom: 18px;
  color: #4d5968;
  font-size: 17px;
  line-height: 1.5;
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  color: #4d5968;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  color: var(--ink);
  border-color: var(--line);
  background: var(--panel);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.form-panel .contact-form label {
  color: #4d5968;
}

.form-panel .contact-form input::placeholder,
.form-panel .contact-form textarea::placeholder {
  color: #7c8796;
}

.contact-form textarea {
  width: 100%;
  min-height: 118px;
  padding: 14px;
  resize: vertical;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  outline: none;
}

.contact-map {
  grid-column: 1 / -1;
  min-height: 240px;
}

.embedded-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.embedded-map img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  counter-reset: step;
}

.process-list li {
  position: relative;
  min-height: 150px;
  padding: 14px 18px 0;
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -20px;
  width: 38px;
  height: 1px;
  background: var(--steel);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 800;
  border-radius: 50%;
  background: var(--blue);
}

.process-list h3 {
  font-size: 15px;
  text-transform: uppercase;
}

.process-list p {
  margin-top: 10px;
  color: #4d5968;
  font-size: 15px;
  line-height: 1.35;
}

.request {
  color: var(--white);
  background: linear-gradient(110deg, #004327 0%, #007544 62%, #003a24 100%);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px) auto;
  gap: 24px;
  align-items: center;
  min-height: 104px;
  padding: 20px 0;
}

.request h2 {
  margin-bottom: 8px;
  color: var(--white);
  text-align: left;
}

.request p {
  color: #e4f2ea;
  font-size: 17px;
}

.request-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.request-form label {
  display: grid;
  gap: 6px;
  color: #e4f2ea;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.request-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.request-form input:focus {
  border-color: var(--white);
}

.request-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
}

.footer {
  padding: 42px 0 34px;
  color: #dcebe3;
  background: #06251a;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1.05fr 260px;
  gap: 44px;
}

.footer h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 16px;
  text-align: left;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.footer p,
.footer a {
  color: #dcebe3;
  font-size: 15px;
  line-height: 1.55;
}

.footer a {
  display: block;
  margin-bottom: 7px;
}

.copyright {
  margin-top: 44px;
  font-size: 13px;
  color: #9fb8aa;
}

address {
  font-style: normal;
}

.map-card {
  position: relative;
  min-height: 148px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(255, 255, 255, 0.38) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, #d8e0e9, #f4f6f8);
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  background: rgba(0, 107, 59, 0.18);
  transform: rotate(-19deg);
}

.map-card::before {
  left: -24px;
  top: 44px;
  width: 330px;
  height: 14px;
}

.map-card::after {
  right: -34px;
  bottom: 44px;
  width: 240px;
  height: 12px;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: var(--blue);
  transform: translate(-50%, -65%) rotate(-45deg);
  box-shadow: 0 8px 18px rgba(0, 107, 59, 0.28);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--white);
}

.lightbox {
  width: min(980px, calc(100% - 32px));
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 5px;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(6, 17, 29, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 5px;
  background: #0d1722;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .site-header {
    gap: 20px;
  }

  .main-nav {
    gap: 16px;
    font-size: 12px;
  }

  .phone-link span {
    display: none;
  }

  .service-grid,
  .benefit-grid,
  .category-teasers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .request-layout,
  .contact-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .request-form {
    grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
    flex-wrap: wrap;
    padding: 12px 18px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 24px rgba(0, 75, 44, 0.08);
  }

  .brand img {
    width: 174px;
  }

  .brand {
    order: 1;
  }

  .menu-toggle {
    order: 2;
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    order: 4;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    flex: 0 0 100%;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border-top: 0 solid var(--line);
    transition: max-height 220ms ease, padding 220ms ease, border-width 220ms ease;
  }

  .site-header.is-open .main-nav {
    max-height: 340px;
    padding-top: 8px;
    border-top-width: 1px;
  }

  .main-nav a {
    display: block;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .phone-link {
    order: 3;
    margin-left: 0;
    width: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 4px;
  }

  .hero {
    min-height: 660px;
    background: #fff;
  }

  .hero-media {
    left: 0;
    width: 100%;
    clip-path: none;
    opacity: 0.22;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 55%, rgba(255, 255, 255, 0.1) 100%),
      url("assets/works/stairs-236.jpg") center bottom / cover no-repeat;
  }

  .hero-content {
    width: min(100% - 32px, 620px);
    padding: 46px 0 220px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(32px, 8.8vw, 38px);
    line-height: 1.18;
  }

  .hero h1 span {
    overflow-wrap: anywhere;
  }

  .lead {
    max-width: 340px;
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .section-inner {
    width: min(100% - 32px, 620px);
  }

  .section,
  .process {
    padding: 26px 0 34px;
  }

  .service-grid,
  .benefit-grid,
  .about-layout,
  .stats,
  .work-grid,
  .category-teasers,
  .split-note,
  .service-detail,
  .category-header,
  .contact-grid,
  .process-list,
  .request-form {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 300px;
    padding: 54px 0 48px;
  }

  .page-hero h1 {
    font-size: clamp(30px, 8.4vw, 34px);
  }

  .page-hero p:not(.eyebrow) {
    max-width: 310px;
    font-size: 18px;
  }

  .form-panel p {
    max-width: 310px;
    font-size: 16px;
  }

  .gallery-nav {
    position: static;
    width: min(100% - 32px, 620px);
  }

  .gallery-section {
    scroll-margin-top: 18px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-card.wide {
    grid-column: auto;
  }

  .contact-form .full,
  .contact-form button {
    grid-column: auto;
  }

  .service-card {
    min-height: 0;
  }

  .about-layout h2,
  .request h2 {
    text-align: center;
  }

  .about-layout p,
  .request p {
    text-align: center;
  }

  .work-item {
    height: 230px;
  }

  .process-list li:not(:last-child)::after {
    display: none;
  }

  .request-phone {
    justify-content: center;
    font-size: 20px;
  }

  .map-card {
    min-height: 200px;
  }
}
