* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f5ede2;
  --bg-soft: #fffbf6;
  --surface: rgba(255, 251, 245, 0.95);
  --surface-strong: #fffdfa;
  --text: #253144;
  --text-soft: #667287;
  --heading: #16263f;
  --dark: #101827;
  --accent: #c6944a;
  --accent-dark: #9a6f31;
  --accent-soft: rgba(198, 148, 74, 0.16);
  --line: rgba(22, 38, 63, 0.1);
  --shadow: 0 24px 64px rgba(22, 38, 63, 0.14);
  --shadow-soft: 0 16px 36px rgba(22, 38, 63, 0.1);
  --radius: 28px;
  --fs-body: clamp(0.98rem, 0.95rem + 0.18vw, 1.06rem);
  --fs-small: clamp(0.88rem, 0.84rem + 0.14vw, 0.96rem);
  --fs-button: clamp(0.88rem, 0.84rem + 0.16vw, 0.98rem);
  --fs-card-title: clamp(1.18rem, 1.04rem + 0.62vw, 1.7rem);
  --fs-section-text: clamp(1rem, 0.96rem + 0.24vw, 1.08rem);
  --space-section: clamp(56px, 5vw, 72px);
  --space-card: clamp(22px, 2.6vw, 36px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(198, 148, 74, 0.14), transparent 22%),
    radial-gradient(circle at top right, rgba(22, 38, 63, 0.05), transparent 20%),
    linear-gradient(180deg, #fffdf9 0%, #f3e9dc 100%);
  color: var(--text);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.card {
  background-color: transparent;
}

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

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

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.section-dark {
  background: linear-gradient(180deg, #fbf5ec 0%, #efe2d1 100%);
}

.section-dark-soft {
  background: transparent;
}

.section-light {
  background: linear-gradient(180deg, #fffdfa 0%, #f0e5d8 100%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 251, 246, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(198, 148, 74, 0.16);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  flex-shrink: 0;
}

.site-logo img {
  height: 82px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: var(--text);
  font-size: clamp(0.92rem, 0.88rem + 0.14vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #6d8096);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--accent-dark);
}

.main-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(20, 35, 60, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--heading);
  font-size: 1.65rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.hero-carousel {
  position: relative;
  height: min(88vh, 820px);
  min-height: 560px;
  margin-top: 82px;
  overflow: hidden;
  background: #0f1115;
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 17, 21, 0.12) 0%, rgba(15, 17, 21, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.carousel-slide,
.video-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.carousel-slide.active,
.video-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-media,
.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn,
.video-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.carousel-btn:hover,
.video-btn:hover {
  background: rgba(185, 137, 71, 0.88);
}

.carousel-btn.prev,
.video-btn.prev {
  left: 24px;
}

.carousel-btn.next,
.video-btn.next {
  right: 24px;
}

.carousel-dots,
.video-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.carousel-dots button,
.video-dots button {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.carousel-dots button.active,
.video-dots button.active {
  background: var(--accent);
  transform: scale(1.12);
}

.about-section,
.presentation-section,
.projects-section,
.catalog-section,
.about-main {
  padding: var(--space-section) 0;
}

.about-section,
.trust-strip,
.title-section,
.subtitle-section,
.products-showcase,
.presentation-section,
.projects-section,
.catalog-section,
.expertise-section,
.process-section {
  position: relative;
  isolation: isolate;
}

.about-section::before,
.trust-strip::before,
.title-section::before,
.subtitle-section::before,
.products-showcase::before,
.presentation-section::before,
.projects-section::before,
.catalog-section::before,
.expertise-section::before,
.process-section::before,
.about-section::after,
.trust-strip::after,
.title-section::after,
.subtitle-section::after,
.products-showcase::after,
.presentation-section::after,
.projects-section::after,
.catalog-section::after,
.expertise-section::after,
.process-section::after {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  width: clamp(88px, 12vw, 190px);
  pointer-events: none;
  z-index: -1;
}

.about-section::before,
.trust-strip::before,
.title-section::before,
.subtitle-section::before,
.products-showcase::before,
.presentation-section::before,
.projects-section::before,
.catalog-section::before,
.expertise-section::before,
.process-section::before {
  left: 0;
  background:
    linear-gradient(180deg, rgba(198, 148, 74, 0.18), rgba(198, 148, 74, 0.04)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  clip-path: polygon(0 0, 76% 0, 100% 18%, 82% 50%, 100% 82%, 72% 100%, 0 100%, 0 72%, 16% 50%, 0 28%);
  border-right: 1px solid rgba(198, 148, 74, 0.22);
  opacity: 0.95;
}

.about-section::after,
.trust-strip::after,
.title-section::after,
.subtitle-section::after,
.products-showcase::after,
.presentation-section::after,
.projects-section::after,
.catalog-section::after,
.expertise-section::after,
.process-section::after {
  right: 0;
  background:
    linear-gradient(180deg, rgba(22, 38, 63, 0.14), rgba(22, 38, 63, 0.03)),
    linear-gradient(225deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  clip-path: polygon(24% 0, 100% 0, 100% 28%, 84% 50%, 100% 72%, 100% 100%, 28% 100%, 0 82%, 18% 50%, 0 18%);
  border-left: 1px solid rgba(22, 38, 63, 0.14);
  opacity: 0.82;
}

.about-section .container,
.trust-strip .container,
.title-section .container,
.subtitle-section .container,
.products-showcase .container,
.presentation-section .container,
.projects-section .container,
.catalog-section .container,
.expertise-section .container,
.process-section .container {
  position: relative;
}

.about-section .container::before,
.trust-strip .container::before,
.products-showcase .container::before,
.presentation-section .container::before,
.projects-section .container::before,
.catalog-section .container::before,
.expertise-section .container::before,
.process-section .container::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: -42px;
  width: 18px;
  background:
    linear-gradient(180deg, rgba(198, 148, 74, 0), rgba(198, 148, 74, 0.18), rgba(198, 148, 74, 0)),
    repeating-linear-gradient(180deg, transparent 0 14px, rgba(198, 148, 74, 0.2) 14px 16px);
  clip-path: polygon(0 0, 100% 8%, 70% 50%, 100% 92%, 0 100%, 22% 50%);
  pointer-events: none;
  opacity: 0.72;
}

.about-section .container::after,
.trust-strip .container::after,
.products-showcase .container::after,
.presentation-section .container::after,
.projects-section .container::after,
.catalog-section .container::after,
.expertise-section .container::after,
.process-section .container::after {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  right: -42px;
  width: 18px;
  background:
    linear-gradient(180deg, rgba(22, 38, 63, 0), rgba(22, 38, 63, 0.16), rgba(22, 38, 63, 0)),
    repeating-linear-gradient(180deg, transparent 0 12px, rgba(22, 38, 63, 0.16) 12px 14px);
  clip-path: polygon(100% 0, 0 8%, 30% 50%, 0 92%, 100% 100%, 78% 50%);
  pointer-events: none;
  opacity: 0.62;
}

.contact-page {
  padding-top: 82px;
}

.contact-hero {
  padding: clamp(62px, 6vw, 78px) 0 clamp(24px, 3vw, 34px);
  text-align: center;
  background: linear-gradient(180deg, #fffdfa 0%, #f5ecdf 100%);
}

.contact-hero p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: var(--text-soft);
}

.contact-section {
  padding: 18px 0 var(--space-section);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.contact-grid-single {
  grid-template-columns: 1fr;
}

.contact-card {
  padding: clamp(22px, 2.5vw, 32px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.97) 0%, rgba(246, 237, 225, 0.95) 100%);
  border: 1px solid rgba(198, 148, 74, 0.15);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 18px;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.form-status {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(67, 160, 71, 0.12);
  border: 1px solid rgba(67, 160, 71, 0.24);
  color: #215a27;
}

.form-status.is-error {
  background: rgba(198, 70, 70, 0.1);
  border: 1px solid rgba(198, 70, 70, 0.22);
  color: #8c2525;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list strong,
.contact-form span {
  display: block;
  margin-bottom: 8px;
  color: var(--heading);
  font-weight: 700;
}

.contact-list p {
  margin: 0;
  color: var(--text-soft);
  font-size: var(--fs-section-text);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.quote-request-form {
  gap: 22px;
}

.quote-form-block {
  background: linear-gradient(180deg, rgba(235, 241, 251, 0.95) 0%, rgba(246, 248, 252, 0.98) 100%);
}

.quote-form-block .form-grid,
.quote-form-block > label,
.quote-form-block .upload-note {
  margin-top: 2px;
}

.quote-request-form label > span {
  margin-bottom: 10px;
  font-size: 0.98rem;
}

.quote-request-form input,
.quote-request-form textarea,
.quote-request-form .quote-measure-form select,
.quote-request-form input[type="file"] {
  border: 1px solid rgba(110, 138, 188, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.quote-request-form textarea {
  min-height: 180px;
}

.quote-request-form input:focus,
.quote-request-form textarea:focus,
.quote-request-form select:focus {
  border-color: #4a7cff;
  box-shadow: 0 0 0 4px rgba(74, 124, 255, 0.12);
}

.quote-form-block .file-upload {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(110, 138, 188, 0.12);
}

.quote-form-block .upload-note {
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.94) 0%, rgba(248, 238, 220, 0.94) 100%);
}

.quote-submit-bar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 0 4px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(198, 148, 74, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-size: var(--fs-body);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(198, 148, 74, 0.12);
}

.file-upload input[type="file"] {
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.file-upload small {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.upload-note {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(198, 148, 74, 0.1);
  border: 1px solid rgba(198, 148, 74, 0.16);
}

.upload-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--heading);
}

.upload-note p {
  margin: 0;
  color: var(--text-soft);
  font-size: var(--fs-small);
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.quote-shell {
  display: grid;
  gap: 26px;
  margin-bottom: 28px;
}

.quote-banner {
  display: grid;
  grid-template-columns: 1.2fr 220px;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(223, 232, 248, 0.95) 0%, rgba(238, 243, 251, 0.98) 100%);
  border: 1px solid rgba(113, 144, 198, 0.18);
}

.quote-banner h2 {
  margin-bottom: 10px;
}

.quote-banner p:last-child {
  margin: 0;
  color: var(--text-soft);
}

.quote-banner-visual {
  position: relative;
  min-height: 124px;
}

.quote-banner-visual span,
.quote-banner-visual span::before,
.quote-banner-visual span::after {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.quote-banner-visual span {
  right: 26px;
  bottom: 30px;
  width: 120px;
  height: 10px;
  background: linear-gradient(90deg, #f4c229, #f9db67);
  box-shadow: 0 6px 14px rgba(244, 194, 41, 0.22);
}

.quote-banner-visual span::before {
  right: 88px;
  bottom: -14px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #1d3557, #486c9a);
  box-shadow: 0 10px 18px rgba(29, 53, 87, 0.2);
}

.quote-banner-visual span::after {
  right: -8px;
  bottom: -8px;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #f57f51, #ffad74);
  box-shadow: 0 10px 18px rgba(245, 127, 81, 0.2);
}

.quote-builder,
.quote-step-block {
  display: grid;
  gap: 18px;
}

.quote-step-block {
  padding: clamp(22px, 2.4vw, 28px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(235, 241, 251, 0.95) 0%, rgba(246, 248, 252, 0.98) 100%);
  border: 1px solid rgba(131, 154, 197, 0.16);
}

.quote-step-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.quote-step-head strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #3f73db, #5aa6ef);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 16px 30px rgba(63, 115, 219, 0.24);
}

.quote-step-head h3 {
  margin-bottom: 4px;
  color: var(--heading);
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.5rem);
}

.quote-step-head p {
  margin: 0;
  color: var(--text-soft);
}

.quote-option-grid,
.quote-series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote-option-card,
.quote-series-card,
.quote-brand-pill {
  border: 1px solid rgba(86, 121, 187, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--heading);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.quote-option-card,
.quote-series-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 22px 18px;
  border-radius: 24px;
  cursor: pointer;
  text-align: center;
}

.quote-option-card:hover,
.quote-series-card:hover,
.quote-brand-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(63, 115, 219, 0.42);
  box-shadow: 0 18px 36px rgba(86, 121, 187, 0.16);
}

.quote-option-card.is-active,
.quote-series-card.is-active,
.quote-brand-pill.is-active {
  background: linear-gradient(180deg, rgba(236, 244, 255, 0.98) 0%, rgba(221, 234, 255, 0.98) 100%);
  border-color: #4a7cff;
  box-shadow: 0 18px 38px rgba(74, 124, 255, 0.18);
}

.quote-option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(74, 124, 255, 0.12), rgba(74, 124, 255, 0.02));
  border: 1px solid rgba(74, 124, 255, 0.3);
  color: #2b5db8;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.quote-option-card strong,
.quote-series-card strong {
  font-size: 1.05rem;
}

.quote-option-card small,
.quote-series-card small {
  color: var(--text-soft);
  line-height: 1.55;
}

.quote-series-card {
  align-content: start;
  justify-items: stretch;
  text-align: left;
  gap: 10px;
  min-height: 100%;
}

.quote-series-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(74, 124, 255, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(240, 245, 255, 0.98) 0%, rgba(226, 235, 251, 0.94) 100%);
  border: 1px solid rgba(74, 124, 255, 0.14);
}

.quote-series-visual img {
  width: 100%;
  max-width: 160px;
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(41, 64, 107, 0.16));
}

.quote-series-card strong,
.quote-series-card small,
.quote-series-card em,
.quote-series-card .quote-series-tag {
  justify-self: start;
}

.quote-series-card em {
  font-style: normal;
  color: #315a98;
  font-size: 0.84rem;
  font-weight: 700;
}

.quote-brand-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quote-spec-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.quote-spec-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(86, 121, 187, 0.14);
}

.quote-spec-card h4 {
  margin-bottom: 12px;
  color: var(--heading);
  font-size: 1rem;
}

.quote-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-brand-pill {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.quote-series-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(74, 124, 255, 0.1);
  color: #335daa;
  font-size: 0.8rem;
  font-weight: 700;
}

.quote-series-card[hidden] {
  display: none;
}

.quote-measure-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.quote-measure-form label {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: stretch;
}

.quote-measure-form label > span {
  margin-bottom: 10px;
}

.quote-measure-form input,
.quote-measure-form select {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(198, 148, 74, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-size: var(--fs-body);
  outline: none;
}

.quote-measure-form input:focus,
.quote-measure-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(198, 148, 74, 0.12);
}

.quote-table-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(110, 138, 188, 0.16);
  box-shadow: var(--shadow-soft);
}

.quote-table {
  width: 100%;
  border-collapse: collapse;
}

.quote-table thead {
  background: rgba(225, 234, 249, 0.95);
}

.quote-table th,
.quote-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(22, 38, 63, 0.08);
  font-size: 0.94rem;
}

.quote-table th {
  color: var(--heading);
  font-weight: 700;
}

.quote-empty-row td {
  padding: 28px 20px;
  background: rgba(217, 231, 251, 0.8);
  color: #23468d;
}

.quote-empty-row strong,
.quote-empty-row span {
  display: block;
}

.quote-empty-row span {
  margin-top: 4px;
  color: #44639d;
}

.quote-table-remove {
  padding: 8px 12px;
  border: none;
  border-radius: 999px;
  background: rgba(230, 92, 92, 0.12);
  color: #b23a3a;
  font-weight: 700;
  cursor: pointer;
}

.quote-actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-section .container,
.catalog-card,
.about-hero-card,
.about-story-card,
.about-values-card,
.about-cta-card {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.97) 0%, rgba(246, 237, 225, 0.95) 100%);
  border: 1px solid rgba(198, 148, 74, 0.15);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.about-section .container {
  padding: var(--space-card);
}

.about-layout-pro,
.presentation-grid,
.catalog-grid,
.about-hero-grid,
.about-story-grid,
.about-cta-card .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.about-text-pro,
.presentation-text,
.catalog-text,
.about-copy {
  max-width: 640px;
}

.about-text-pro h2,
.presentation-text h2,
.catalog-text h2,
.title-section h2,
.projects-heading h2,
.product-detail-body h2,
.gallery-project-head h2,
.products-hero h1,
.gallery-hero h1,
.about-hero-copy h1,
.about-story-copy h2,
.about-values-heading h2,
.about-cta-copy h2,
.footer-slogan h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--heading);
  line-height: 1.08;
}

.about-text-pro h2,
.presentation-text h2,
.catalog-text h2,
.title-section h2,
.projects-heading h2,
.products-hero h1,
.gallery-hero h1,
.about-hero-copy h1,
.about-story-copy h2,
.about-values-heading h2,
.about-cta-copy h2 {
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.about-text-pro p,
.presentation-text p,
.catalog-text p,
.subtitle-section p,
.product-detail-body p,
.gallery-project-head p,
.products-hero p,
.project-card p,
.about-hero-copy p,
.about-story-copy p,
.about-values-heading p,
.about-cta-copy p,
.about-stat-card p,
.about-value-card p {
  color: var(--text-soft);
  font-size: var(--fs-section-text);
  line-height: 1.85;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 9px 16px;
  border: 1px solid rgba(198, 148, 74, 0.32);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.84);
  color: var(--accent-dark);
  font-size: clamp(0.72rem, 0.68rem + 0.18vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-images-pro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.img-box,
.project-card,
.gallery-card,
.product-detail-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(185, 137, 71, 0.12);
}

.img-box img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.img-box:first-child {
  grid-column: span 2;
}

.img-box:first-child img {
  height: 320px;
}

.img-box:hover img,
.gallery-card:hover img,
.project-card:hover .project-card-media img {
  transform: scale(1.04);
}

.title-section,
.subtitle-section,
.projects-heading,
.gallery-hero,
.products-hero {
  text-align: center;
}

.title-section {
  padding: 22px 0 14px;
}

.title-section-dark {
  background: linear-gradient(180deg, #fbf5ec 0%, #eee0cd 100%);
}

.subtitle-section {
  padding: 0 0 42px;
}

.subtitle-section p,
.gallery-hero p,
.products-hero p {
  width: min(760px, 100%);
  margin: 0 auto;
}

.gallery-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.products-showcase {
  padding: 8px 0 72px;
}

.trust-strip {
  padding: 0 0 34px;
}

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

.trust-card {
  padding: 24px 20px;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(198, 148, 74, 0.14);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.trust-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--heading);
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.6rem);
  font-family: Georgia, "Times New Roman", serif;
}

.trust-card span {
  color: var(--text-soft);
  font-size: var(--fs-small);
}

.products-grid,
.projects-grid,
.product-detail-grid,
.gallery-grid,
.about-values-grid,
.about-stats-grid {
  display: grid;
  gap: 26px;
}

.products-grid,
.product-detail-grid {
  grid-template-columns: repeat(2, 1fr);
}

.projects-grid,
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-block {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96) 0%, rgba(244, 235, 223, 0.98) 100%);
  border: 1px solid rgba(198, 148, 74, 0.14);
  box-shadow: var(--shadow);
}

.product-visual {
  padding: 18px;
  background: linear-gradient(180deg, #fffdfa 0%, #f4eadc 100%);
}

.product-visual img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(22, 38, 63, 0.08);
}

.product-content {
  padding: 30px 28px 30px;
}

.product-content-light {
  background: linear-gradient(180deg, rgba(18, 29, 45, 0.92) 0%, rgba(13, 20, 31, 0.98) 100%);
}

.product-tag,
.product-tag-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-tag {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.product-tag-dark {
  background: var(--accent-soft);
  border: 1px solid rgba(60, 76, 96, 0.2);
  color: var(--accent-dark);
}

.product-content h3 {
  max-width: 360px;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: var(--fs-card-title);
  line-height: 1.18;
}

.product-content p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--fs-small);
}

.product-card-download,
.product-download-btn {
  margin-top: 18px;
  width: fit-content;
}

.video-hero {
  padding: 10px 0 34px;
}

.video-slider {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0f1115;
  border: 1px solid rgba(185, 137, 71, 0.12);
}

.video-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.video-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
}

.video-logo img {
  width: 126px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.presentation-image {
  position: relative;
}

.presentation-image img {
  min-height: 420px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 26px 60px rgba(20, 35, 60, 0.18);
}

.presentation-text {
  max-width: 620px;
  padding: 34px 36px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.9) 0%, rgba(245, 235, 223, 0.96) 100%);
  border: 1px solid rgba(198, 148, 74, 0.14);
  box-shadow: 0 24px 60px rgba(20, 35, 60, 0.08);
  position: relative;
}

.presentation-text::before {
  content: "";
  position: absolute;
  top: 34px;
  left: -1px;
  width: 5px;
  height: 78px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), #e3bf80);
}

.presentation-text h2 {
  max-width: 12ch;
  margin-bottom: 18px;
}

.presentation-text p {
  max-width: 58ch;
}

.presentation-text .section-kicker {
  margin-bottom: 18px;
}

.presentation-text .pill-btn {
  margin-top: 22px;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.project-card-media {
  height: 260px;
  background: #ede3d6;
  overflow: hidden;
}

.project-card-media img,
.gallery-card img,
.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card-body,
.product-detail-body {
  padding: 24px;
}

.project-card span,
.gallery-project-head span,
.about-stat-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-weight: 800;
}

.project-card span {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.project-card h3 {
  margin-bottom: 10px;
  color: var(--heading);
  font-size: clamp(1.22rem, 1.06rem + 0.74vw, 1.55rem);
  line-height: 1.2;
}

.projects-cta {
  margin-top: 30px;
  text-align: center;
}

.expertise-section,
.process-section {
  padding: 14px 0 72px;
}

.expertise-heading,
.process-copy {
  max-width: 760px;
}

.expertise-heading {
  margin-bottom: 28px;
  text-align: center;
}

.expertise-heading h2,
.process-copy h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--heading);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.12;
}

.expertise-heading p:last-child,
.process-copy p:last-child {
  color: var(--text-soft);
  font-size: var(--fs-section-text);
  line-height: 1.8;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.expertise-card,
.process-step {
  padding: 28px 24px;
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(198, 148, 74, 0.14);
  box-shadow: var(--shadow-soft);
}

.expertise-card h3,
.process-step h3 {
  margin-bottom: 10px;
  color: var(--heading);
  font-size: clamp(1.14rem, 1rem + 0.5vw, 1.3rem);
}

.expertise-card p,
.process-step p {
  color: var(--text-soft);
  font-size: var(--fs-small);
  line-height: 1.8;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.process-steps {
  display: grid;
  gap: 18px;
}

.process-step {
  position: relative;
  padding-left: 88px;
}

.process-step span {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.catalog-card {
  padding: 34px;
}

.catalog-image {
  min-height: 320px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.products-page,
.gallery-page,
.about-page {
  padding-top: 82px;
}

.products-hero,
.gallery-hero {
  padding: 78px 0 52px;
  background: linear-gradient(180deg, #fffdfa 0%, #f5ecdf 100%);
}

.products-list-section,
.gallery-project-soft {
  background: linear-gradient(180deg, #fffdfa 0%, #f6ede1 100%);
}

.products-list-section {
  padding: 30px 0 88px;
}

.product-detail-image {
  height: 360px;
  background: linear-gradient(180deg, #f8f2ea 0%, #ebdfcf 100%);
  overflow: hidden;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-detail-image-contain {
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9f4ec 100%);
}

.product-detail-image-contain img {
  object-fit: contain;
  filter: contrast(1.08) saturate(1.04);
}

.gallery-project-section {
  padding: 48px 0 62px;
}

.gallery-project-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.project-sublist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.project-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(198, 148, 74, 0.12);
  border: 1px solid rgba(198, 148, 74, 0.18);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.project-chip-link {
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.project-chip-link:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: #ffffff;
}

.gallery-directory {
  padding: 8px 0 24px;
}

.gallery-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-directory-card,
.gallery-subproject-block {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.97) 0%, rgba(246, 237, 225, 0.95) 100%);
  border: 1px solid rgba(198, 148, 74, 0.15);
  box-shadow: var(--shadow-soft);
}

.gallery-subproject-block + .gallery-subproject-block {
  margin-top: 22px;
}

.gallery-subproject-block h3,
.gallery-directory-card h2 {
  margin-bottom: 16px;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
}

.gallery-project-head span {
  min-width: 68px;
  height: 68px;
  border-radius: 20px;
  background: var(--accent-soft);
  font-size: 1.4rem;
}

.gallery-grid-masonry {
  display: block;
  column-count: 3;
  column-gap: 22px;
}

.gallery-photo-card {
  display: block;
  margin: 0 0 22px;
  padding: 12px;
  break-inside: avoid;
  background: rgba(255, 255, 255, 0.92);
}

.gallery-card-link {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #f6efe5;
}

.gallery-card img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.about-page {
  background: linear-gradient(180deg, #fffdfa 0%, #f5ede2 100%);
}

.about-main {
  display: grid;
  gap: 28px;
  padding: var(--space-section) 0;
}

.about-main > section {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--space-card);
}

.about-hero-media img,
.about-story-media img {
  min-height: 360px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.about-hero-card .container,
.about-story-card .container,
.about-hero-card .container,
.about-story-card .container,
.about-values-card .container,
.about-cta-card .container {
  width: 100%;
  padding: 0;
}

.about-hero-grid,
.about-story-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
}

.about-story-card {
  margin-top: 0;
}

.about-values-card .container {
  display: grid;
  gap: 28px;
}

.about-values-heading {
  max-width: 760px;
}

.about-values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-value-card,
.about-stat-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(185, 137, 71, 0.1);
  box-shadow: var(--shadow-soft);
}

.about-value-card h3 {
  margin-bottom: 10px;
  color: var(--heading);
  font-size: clamp(1.12rem, 0.98rem + 0.44vw, 1.25rem);
}

.about-stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-stat-card {
  text-align: center;
}

.about-stat-card strong {
  width: 100%;
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 1.3rem + 0.9vw, 2rem);
}

.about-cta-card {
  background: linear-gradient(135deg, #162235 0%, #24334b 100%);
  border: none;
}

.about-cta-card .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.about-cta-copy h2,
.about-cta-copy p {
  color: #ffffff;
}

.about-cta-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.about-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.about-cta-card .pill-btn {
  box-shadow: none;
}

.about-cta-card .pill-btn:not(.solid) {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.about-cta-card .pill-btn:not(.solid):hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer-section {
  padding: 62px 0 34px;
  background: linear-gradient(180deg, #faf6ef 0%, #ecdfce 100%);
}

.footer-brand-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.footer-logo img {
  max-width: 180px;
  width: auto;
}

.footer-slogan h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 6px;
}

.footer-slogan p {
  color: var(--accent-dark);
  letter-spacing: 0.16em;
  font-size: var(--fs-small);
}

.map-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.footer-line {
  margin: 24px 0 18px;
  border: none;
  height: 1px;
  background: rgba(20, 35, 60, 0.08);
}

.social-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.social-row a {
  font-weight: 700;
  color: var(--text);
}

.social-row a:hover {
  color: var(--accent-dark);
}

.footer-meta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 35, 60, 0.08);
  display: grid;
  gap: 14px;
}

.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--text-soft);
  font-size: var(--fs-small);
}

.footer-meta-links span {
  position: relative;
}

.footer-meta-links span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(22, 38, 63, 0.26);
  transform: translateY(-50%);
}

.footer-copy {
  margin: 0;
  color: var(--heading);
  font-size: var(--fs-small);
  letter-spacing: 0.03em;
}

.footer-copy strong {
  font-weight: 800;
  text-transform: none;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 1.2vw, 13px) clamp(20px, 2.2vw, 28px);
  border-radius: 999px;
  border: 1px solid rgba(16, 21, 29, 0.14);
  background: rgba(255, 253, 249, 0.88);
  color: var(--heading);
  font-size: var(--fs-button);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.pill-btn:hover {
  transform: translateY(-2px);
  background: var(--heading);
  border-color: var(--heading);
  color: #ffffff;
}

.pill-btn.solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.pill-btn.solid:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.shape {
  width: 100%;
}

.shape-pattern-top,
.shape-wave-top,
.shape-rainy-top,
.shape-angle-bottom,
.shape-bold-top,
.shape-container-top {
  height: 32px;
}

.shape-pattern-top,
.shape-angle-bottom,
.shape-bold-top,
.shape-container-top {
  background: linear-gradient(90deg, rgba(60, 76, 96, 0.16), transparent);
}

.shape-wave-top {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
}

.shape-rainy-top {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
}

@media (max-width: 1120px) {
  .products-grid,
  .product-detail-grid,
  .catalog-grid,
  .contact-grid,
  .presentation-grid,
  .process-layout,
  .about-layout-pro,
  .about-hero-grid,
  .about-story-grid,
  .about-cta-card .container,
  .footer-brand-row {
    grid-template-columns: 1fr;
  }

  .quote-banner,
  .quote-option-grid,
  .quote-series-grid,
  .quote-measure-form,
  .quote-spec-layout {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid,
  .expertise-grid,
  .projects-grid,
  .about-values-grid,
  .gallery-directory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid-masonry {
    column-count: 2;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .presentation-text,
  .about-text-pro,
  .catalog-text,
  .about-copy {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    width: min(320px, calc(100vw - 40px));
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(185, 137, 71, 0.14);
    background: rgba(255, 252, 247, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a::after {
    bottom: -6px;
  }

  .site-logo img {
    height: 68px;
  }

  .nav-wrap {
    min-height: 74px;
    gap: 16px;
  }

  .hero-carousel {
    min-height: 460px;
  }

  .about-section::before,
  .trust-strip::before,
  .title-section::before,
  .subtitle-section::before,
  .products-showcase::before,
  .presentation-section::before,
  .projects-section::before,
  .catalog-section::before,
  .expertise-section::before,
  .process-section::before,
  .about-section::after,
  .trust-strip::after,
  .title-section::after,
  .subtitle-section::after,
  .products-showcase::after,
  .presentation-section::after,
  .projects-section::after,
  .catalog-section::after,
  .expertise-section::after,
  .process-section::after {
    width: 72px;
    opacity: 0.5;
  }

  .about-section .container::before,
  .trust-strip .container::before,
  .products-showcase .container::before,
  .presentation-section .container::before,
  .projects-section .container::before,
  .catalog-section .container::before,
  .expertise-section .container::before,
  .process-section .container::before {
    left: -14px;
  }

  .about-section .container::after,
  .trust-strip .container::after,
  .products-showcase .container::after,
  .presentation-section .container::after,
  .projects-section .container::after,
  .catalog-section .container::after,
  .expertise-section .container::after,
  .process-section .container::after {
    right: -14px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1240px);
  }

  .hero-carousel {
    height: 68vh;
    min-height: 420px;
  }

  body {
    line-height: 1.65;
  }

  .carousel-btn,
  .video-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .about-section,
  .presentation-section,
  .projects-section,
  .catalog-section,
  .about-main {
    padding: 64px 0;
  }

  .about-section .container,
  .catalog-card,
  .about-main > section {
    padding: 22px;
  }

  .contact-card,
  .presentation-text,
  .catalog-card,
  .about-value-card,
  .about-stat-card,
  .expertise-card,
  .process-step {
    border-radius: 22px;
  }

  .products-grid,
  .form-grid,
  .trust-grid,
  .expertise-grid,
  .projects-grid,
  .gallery-directory-grid,
  .quote-option-grid,
  .quote-series-grid,
  .quote-measure-form,
  .quote-spec-layout,
  .product-detail-grid,
  .about-values-grid,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .quote-banner {
    grid-template-columns: 1fr;
  }

  .quote-banner-visual {
    min-height: 86px;
  }

  .quote-table-card {
    overflow-x: auto;
  }

  .gallery-grid-masonry {
    column-count: 1;
    column-gap: 0;
  }

  .trust-strip {
    padding-bottom: 18px;
  }

  .expertise-section,
  .process-section {
    padding: 6px 0 56px;
  }

  .process-step {
    padding: 82px 22px 22px;
  }

  .process-step span {
    top: 22px;
    left: 22px;
  }

  .img-box:first-child {
    grid-column: span 1;
  }

  .img-box:first-child img,
  .img-box img {
    height: 220px;
  }

  .product-block {
    min-height: auto;
  }

  .product-content {
    padding: 24px 20px 24px;
  }

  .product-visual {
    padding: 12px;
  }

  .product-visual img {
    max-height: 250px;
  }

  .product-content h3 {
    font-size: 1.45rem;
  }

  .product-card-download,
  .product-download-btn,
  .presentation-text .pill-btn,
  .projects-cta .pill-btn,
  .catalog-text .pill-btn,
  .about-cta-actions .pill-btn {
    width: 100%;
  }

  .video-slider {
    min-height: 340px;
  }

  .video-logo img {
    width: 96px;
  }

  .project-card-media,
  .product-detail-image,
  .about-hero-media img,
  .about-story-media img,
  .catalog-image {
    min-height: 240px;
    height: 240px;
  }

  .gallery-card img {
    min-height: 0;
    height: auto;
  }

  .presentation-image img {
    min-height: 260px;
    height: 260px;
  }

  .presentation-text {
    padding: 24px 22px;
  }

  .presentation-text::before {
    top: 24px;
    height: 58px;
  }

  .gallery-project-head {
    flex-direction: column;
  }

  .main-nav a {
    font-size: 1rem;
  }

  .contact-actions,
  .about-cta-actions {
    gap: 12px;
  }

  .footer-brand-row,
  .social-row,
  .projects-cta {
    text-align: center;
    justify-content: center;
  }

  .footer-meta,
  .footer-meta-links {
    text-align: center;
    justify-content: center;
  }

  .about-cta-actions {
    justify-content: stretch;
  }

  .map-card {
    height: 300px;
  }

  .footer-copy,
  .footer-meta-links {
    line-height: 1.7;
  }

  .about-section::before,
  .trust-strip::before,
  .title-section::before,
  .subtitle-section::before,
  .products-showcase::before,
  .presentation-section::before,
  .projects-section::before,
  .catalog-section::before,
  .expertise-section::before,
  .process-section::before,
  .about-section::after,
  .trust-strip::after,
  .title-section::after,
  .subtitle-section::after,
  .products-showcase::after,
  .presentation-section::after,
  .projects-section::after,
  .catalog-section::after,
  .expertise-section::after,
  .process-section::after,
  .about-section .container::before,
  .trust-strip .container::before,
  .products-showcase .container::before,
  .presentation-section .container::before,
  .projects-section .container::before,
  .catalog-section .container::before,
  .expertise-section .container::before,
  .process-section .container::before,
  .about-section .container::after,
  .trust-strip .container::after,
  .products-showcase .container::after,
  .presentation-section .container::after,
  .projects-section .container::after,
  .catalog-section .container::after,
  .expertise-section .container::after,
  .process-section .container::after {
    display: none;
  }
}
