:root {
  --ink: #111416;
  --text: #263238;
  --muted: #6f7b83;
  --white: #ffffff;
  --paper: #f6f4ef;
  --soft: #ebe7dc;
  --line: rgba(17, 20, 22, .12);
  --charcoal: #111820;
  --steel: #64737d;
  --copper: #c48a3a;
  --copper-dark: #8d5d20;
  --glass: rgba(255, 255, 255, .13);
  --shadow: 0 28px 90px rgba(17, 20, 22, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(17, 20, 22, .045) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, rgba(17, 20, 22, .035) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper);
  font-family: "Assistant", "Rubik", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  padding: 12px clamp(16px, 4vw, 58px);
  color: var(--white);
  background: rgba(17, 24, 32, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(154px, 18vw, 250px);
}

.brand img {
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .28));
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.35vw, 22px);
  font-weight: 850;
  font-size: 16px;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, .82);
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--copper);
  content: "";
  transition: width .2s ease;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  direction: rtl;
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
}

.phone-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #6f86ff;
  background: rgba(255, 255, 255, .92);
  border: 2px solid #9fb0ff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(159, 176, 255, .16);
}

.phone-chip small,
.phone-chip strong {
  display: block;
  line-height: 1.15;
}

.phone-chip small {
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
}

.phone-chip strong {
  margin-top: 3px;
  font-size: 18px;
}

.quote-chip {
  display: inline-flex;
  min-height: 44px;
  min-width: 132px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: #48bada;
  border-radius: 4px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(72, 186, 218, .24);
}

.quote-chip:hover {
  background: #37aeca;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero-shade {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .055) 0 1px, transparent 1px 120px),
    linear-gradient(90deg, rgba(12, 17, 22, .12), rgba(12, 17, 22, .74) 48%, rgba(12, 17, 22, .96)),
    linear-gradient(0deg, rgba(12, 17, 22, .88), rgba(12, 17, 22, .05) 62%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 90px) 148px auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-weight: 950;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: inherit;
  font-size: clamp(42px, 6.4vw, 92px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(31px, 4.2vw, 58px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.18;
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 950;
  cursor: pointer;
}

.btn.primary {
  color: var(--ink);
  background: var(--copper);
}

.btn.primary:hover {
  background: #d6a454;
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .42);
}

.standards-section {
  background: var(--white);
}

.standards-intro {
  width: min(930px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) 0 34px;
  text-align: center;
}

.standards-intro h2 {
  margin-bottom: 22px;
  color: #292d32;
  font-size: clamp(28px, 3vw, 44px);
}

.standards-intro h2 span {
  display: inline-block;
  padding: 4px 12px 7px;
  color: #f3962f;
  background: #151a46;
}

.standards-intro p {
  margin-bottom: 8px;
  color: #29304b;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.75;
}

.standards-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 150px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 17, 20, .92), rgba(24, 30, 34, .76), rgba(13, 17, 20, .92)),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, .18) 0 1px, transparent 1px 13px),
    linear-gradient(105deg, #aeb4b6 0%, #e4e7e6 18%, #8f9699 36%, #d3d7d6 54%, #737b80 72%, #c5c9c9 100%);
  background-position: center;
  background-size: cover;
}

.standards-stats::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(17, 24, 32, .2), rgba(17, 24, 32, .04)),
    linear-gradient(90deg, rgba(17, 24, 32, .34), transparent 38%, rgba(17, 24, 32, .34));
  content: "";
}

.standards-stats div {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 150px;
  align-content: center;
  justify-items: center;
  gap: 4px;
  text-align: center;
}

.standards-stats strong {
  color: var(--copper);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  font-weight: 950;
  transform: translateY(8px) scale(.96);
  opacity: .2;
  transition: opacity .55s ease, transform .55s ease, text-shadow .55s ease;
}

.standards-stats.is-counting strong {
  opacity: 1;
  transform: translateY(0) scale(1);
  text-shadow: 0 0 22px rgba(196, 138, 58, .28);
}

.standards-stats span {
  color: var(--white);
  font-size: 18px;
  font-weight: 950;
}

.standards-projects {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 12px 0 0;
  background: #f4f1ea;
}

.standards-projects a {
  position: relative;
  display: grid;
  min-height: 235px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.standards-projects a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(196, 138, 58, .2), transparent 44%),
    rgba(17, 24, 32, .68);
  content: "";
  transition: background .25s ease;
}

.standards-projects a::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  content: "";
  transition: transform .32s ease;
}

.standards-projects a:hover::before {
  background:
    linear-gradient(135deg, rgba(196, 138, 58, .26), transparent 44%),
    rgba(17, 24, 32, .5);
}

.standards-projects a:hover::after {
  transform: scale(1.05);
}

.standards-projects span {
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 950;
  text-shadow: 0 5px 16px rgba(0, 0, 0, .42);
}

.old-style-slider {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #171b1f;
  background: #f1efe8;
}

.legacy-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .08), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 38%),
    var(--legacy-slider-bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .9s ease;
}

.legacy-slide-windows {
  --legacy-slider-bg: #f1efe8;
}

.legacy-slide-offices {
  --legacy-slider-bg: #f1efe8;
}

.legacy-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.legacy-slider-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(38px, 6vw, 110px);
  width: min(1080px, calc(100% - 100px));
  margin: 0 auto;
  align-items: center;
}

.legacy-slider-copy {
  text-align: right;
}

.legacy-slider-copy > p:first-child {
  margin: 0 0 18px;
  color: #f3d08d;
  font-size: 19px;
  font-weight: 950;
  letter-spacing: 3px;
}

.legacy-slider-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(56px, 6vw, 86px);
  line-height: 1.08;
  font-weight: 950;
}

.legacy-slider-copy span {
  display: block;
  width: min(480px, 100%);
  height: 2px;
  margin: 26px 0 30px auto;
  background: rgba(255, 255, 255, .45);
}

.legacy-text {
  max-width: 560px;
  margin: 0 0 28px auto;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  line-height: 1.85;
}

.legacy-slider-copy a {
  display: inline-flex;
  min-width: 265px;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(17, 24, 32, .45);
  font-size: 23px;
  font-weight: 950;
  transition: background .22s ease, transform .22s ease;
}

.legacy-slide-windows .legacy-slider-copy a {
  background: #17202a;
  border: 1px solid rgba(196, 138, 58, .34);
}

.legacy-slide-offices .legacy-slider-copy a {
  background: #17202a;
  border: 1px solid rgba(196, 138, 58, .34);
}

.legacy-slide-windows .legacy-slider-copy > p:first-child,
.legacy-slide-windows .legacy-text,
.legacy-slide-offices .legacy-slider-copy > p:first-child,
.legacy-slide-offices .legacy-text {
  color: #3d5966;
}

.legacy-slide-windows .legacy-slider-copy h2,
.legacy-slide-offices .legacy-slider-copy h2 {
  color: #171b1f;
}

.legacy-slide-windows .legacy-slider-copy span,
.legacy-slide-offices .legacy-slider-copy span {
  background: rgba(196, 138, 58, .55);
}

.legacy-slider-copy a:hover {
  transform: translateY(-3px);
  background: rgba(17, 24, 32, .68);
}

.legacy-slider-art {
  position: relative;
  min-height: 560px;
}

.legacy-window {
  position: absolute;
  z-index: 2;
  right: -20px;
  bottom: 36px;
  width: min(610px, 100%);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .26));
}

.legacy-lines {
  position: absolute;
  z-index: 1;
  top: -10px;
  right: 140px;
  width: 310px;
  opacity: .82;
}

.legacy-shape {
  position: absolute;
  z-index: 1;
  right: -54px;
  bottom: 40px;
  width: 122px;
}


.section {
  padding: clamp(72px, 9vw, 124px) 0;
}

.shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.intro {
  background: var(--paper);
}

.lead-copy {
  color: var(--muted);
  font-size: 19px;
}

.lead-copy p {
  margin-bottom: 18px;
}

.section-title {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-title.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.services-section {
  background:
    linear-gradient(135deg, rgba(196, 138, 58, .1), transparent 34%),
    linear-gradient(90deg, rgba(17, 20, 22, .028) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(0deg, rgba(17, 20, 22, .022) 1px, transparent 1px) 0 0 / 86px 86px,
    #f4f1ea;
}

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

.service-card {
  position: relative;
  min-height: 430px;
  padding: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(232, 228, 216, .92)),
    var(--white);
  border: 1px solid rgba(17, 20, 22, .13);
  box-shadow: 0 18px 48px rgba(17, 20, 22, .1);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.service-card a {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 414px;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .32s ease;
}

.service-card a::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 14, 18, .94), rgba(10, 14, 18, .55) 44%, rgba(10, 14, 18, .2)),
    linear-gradient(135deg, rgba(196, 138, 58, .18), transparent 45%);
  content: "";
  transition: background .32s ease;
}

.service-card a::before {
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .28);
  content: "";
  pointer-events: none;
  transition: inset .3s ease, border-color .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 138, 58, .68);
  box-shadow: 0 30px 78px rgba(17, 20, 22, .2);
}

.service-card:hover img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.08);
}

.service-card:hover a::after {
  background:
    linear-gradient(0deg, rgba(17, 24, 32, .96), rgba(17, 24, 32, .5) 52%, rgba(196, 138, 58, .2)),
    linear-gradient(135deg, rgba(196, 138, 58, .34), transparent 46%);
}

.service-card:hover a::before {
  inset: 16px;
  border-color: rgba(196, 138, 58, .8);
}

.service-card__body {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 30px;
}

.service-card__body span {
  display: inline-grid;
  width: 46px;
  height: 34px;
  place-items: center;
  color: var(--copper);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(196, 138, 58, .35);
  font-weight: 950;
  transition: color .28s ease, background .28s ease;
}

.service-card__body h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(27px, 2.3vw, 39px);
  line-height: 1.08;
  text-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

.service-card__body p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.75;
}

.service-card__body p::after {
  display: block;
  width: max-content;
  margin-top: 18px;
  padding: 8px 14px;
  color: #111417;
  background: var(--copper);
  content: "לפרטים נוספים";
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .28s ease, transform .28s ease;
}

.service-card:hover .service-card__body span {
  color: #111417;
  background: var(--copper);
}

.service-card:hover .service-card__body p::after {
  opacity: 1;
  transform: translateY(0);
}

.category-gallery-section {
  background:
    linear-gradient(90deg, rgba(17, 20, 22, .035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(17, 20, 22, .025) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
}

.service-category-gallery {
  background: var(--paper);
}

.category-gallery-list {
  display: grid;
  gap: 34px;
}

.category-gallery-block {
  display: grid;
  gap: 16px;
}

.category-gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17, 20, 22, .12);
}

.category-gallery-head span {
  color: var(--copper);
  font-size: 28px;
  font-weight: 950;
}

.category-gallery-head h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 40px);
}

.category-image-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.category-image-card {
  position: relative;
  min-height: 185px;
  padding: 10px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(236, 232, 220, .92)),
    var(--white);
  border: 1px solid rgba(17, 20, 22, .16);
  box-shadow: 0 18px 42px rgba(17, 20, 22, .11);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.category-image-card::before {
  position: absolute;
  inset: 10px;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(10, 14, 18, .66), transparent 62%),
    linear-gradient(135deg, rgba(196, 138, 58, .28), transparent 44%);
  opacity: 0;
  content: "";
  transition: opacity .3s ease;
  pointer-events: none;
}

.category-image-card::after {
  position: absolute;
  inset: 4px;
  z-index: 2;
  border: 1px solid rgba(196, 138, 58, .34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
  content: "";
  pointer-events: none;
  transition: inset .3s ease, border-color .3s ease;
}

.category-image-card img {
  height: 100%;
  min-height: 165px;
  object-fit: cover;
  transition: transform .42s ease, filter .3s ease;
}

.category-image-card span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  display: grid;
  width: 42px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: rgba(196, 138, 58, .96);
  font-weight: 950;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}

.category-image-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 138, 58, .8);
  box-shadow: 0 28px 72px rgba(17, 20, 22, .2);
}

.category-image-card:hover::after {
  inset: 8px;
  border-color: rgba(255, 255, 255, .86);
}

.category-image-card:hover::before,
.category-image-card:hover span {
  opacity: 1;
}

.category-image-card:hover span {
  transform: translateY(0);
}

.category-image-card:hover img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.08);
}

.catalog-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 4vw, 46px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(196, 138, 58, .24), transparent 42%),
    #111820;
  border: 1px solid rgba(196, 138, 58, .34);
  box-shadow: 0 28px 80px rgba(17, 24, 32, .16);
}

.catalog-panel span {
  color: var(--copper);
  font-weight: 950;
}

.catalog-panel h3 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.05;
}

.catalog-panel p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.75;
}

.catalog-empty {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .22);
}

.catalog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.catalog-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(17, 20, 22, .12);
  box-shadow: 0 18px 48px rgba(17, 20, 22, .07);
}

.catalog-item span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: var(--copper);
  border-radius: 50%;
  font-weight: 950;
}

.catalog-item strong {
  color: var(--ink);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.45;
  font-weight: 850;
}

.catalog-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1153px);
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.catalog-product-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(17, 20, 22, .12);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(17, 20, 22, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.catalog-product-card:hover {
  border-color: rgba(196, 138, 58, .42);
  box-shadow: 0 24px 58px rgba(17, 20, 22, .12);
  transform: translateY(-4px);
}

.catalog-product-card span {
  position: static;
  display: grid;
  width: max-content;
  min-width: 44px;
  height: 32px;
  margin: 12px auto 0;
  padding: 0 12px;
  place-items: center;
  color: var(--ink);
  background: var(--copper);
  font-size: 13px;
  font-weight: 950;
}

.catalog-product-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  transition: transform .22s ease;
}

.catalog-product-card:hover img {
  transform: none;
}

.catalog-product-card strong {
  display: block;
  margin-top: 12px;
  padding: 12px 14px;
  color: #111416;
  background: linear-gradient(135deg, rgba(202, 143, 50, .16), rgba(17, 20, 22, .04));
  border: 1px solid rgba(202, 143, 50, .28);
  font-size: 18px;
  line-height: 1.35;
  text-align: center;
}

.catalog-page-hero {
  padding: 92px 0 48px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 20, 22, .94), rgba(34, 42, 48, .9)),
    radial-gradient(circle at 18% 28%, rgba(202, 143, 50, .24), transparent 32%);
  border-bottom: 4px solid var(--copper);
}

.catalog-page-hero .shell {
  display: grid;
  gap: 18px;
}

.catalog-page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
}

.catalog-page-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  line-height: 1.8;
}

.catalog-search {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin-top: 10px;
}

.catalog-search label {
  color: var(--copper);
  font-weight: 950;
}

.catalog-search div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
}

.catalog-search input {
  min-height: 52px;
  padding: 0 16px;
  color: #111416;
  background: #fff;
  border: 0;
  font: inherit;
}

.catalog-search button,
.catalog-search a {
  display: inline-grid;
  min-height: 52px;
  padding: 0 22px;
  place-items: center;
  color: #111416;
  background: var(--copper);
  border: 0;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.catalog-search a {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  text-decoration: none;
}

.catalog-page {
  background: var(--paper);
}

.catalog-page-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px 18px;
  color: #111416;
  background: #fff;
  border: 1px solid rgba(17, 20, 22, .1);
  box-shadow: 0 14px 34px rgba(17, 20, 22, .06);
}

.catalog-page-toolbar strong {
  font-size: 20px;
}

.catalog-page-toolbar span {
  color: var(--muted);
}

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

.catalog-page-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 20, 22, .1);
  box-shadow: 0 18px 42px rgba(17, 20, 22, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.catalog-page-card:hover {
  border-color: rgba(202, 143, 50, .45);
  box-shadow: 0 24px 56px rgba(17, 20, 22, .13);
  transform: translateY(-3px);
}

.catalog-page-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.catalog-page-card div {
  display: grid;
  gap: 7px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(17, 20, 22, .08);
}

.catalog-page-card span {
  color: var(--copper);
  font-weight: 950;
}

.catalog-page-card h2 {
  margin: 0;
  color: #111416;
  font-size: 21px;
  line-height: 1.25;
}

.catalog-page-card p {
  margin: 0;
  color: var(--muted);
}

.catalog-no-results {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 70px 20px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(17, 20, 22, .1);
}

.catalog-no-results h2,
.catalog-no-results p {
  margin: 0;
}

.quality {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  min-height: 640px;
  padding: 0;
  background: var(--charcoal);
  color: var(--white);
}

.quality-image img {
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.quality-copy {
  display: grid;
  align-content: center;
  padding: clamp(38px, 6vw, 80px);
}

.quality-copy h2 {
  color: var(--white);
}

.quality-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.gallery-section {
  background: var(--paper);
}

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

.gallery-item,
.service-hero__image {
  display: block;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.gallery-item {
  position: relative;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(235, 231, 220, .92)),
    var(--white);
  border: 1px solid rgba(17, 20, 22, .16);
  box-shadow: 0 18px 46px rgba(17, 20, 22, .11);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.gallery-item::before {
  position: absolute;
  inset: 10px;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(10, 14, 18, .52), transparent 58%),
    linear-gradient(135deg, rgba(196, 138, 58, .25), transparent 44%);
  opacity: 0;
  content: "";
  transition: opacity .28s ease;
  pointer-events: none;
}

.gallery-item::after {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  color: var(--white);
  content: "צפייה בפרויקט";
  font-weight: 950;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .28s ease;
  text-shadow: 0 4px 14px rgba(0, 0, 0, .45);
  pointer-events: none;
}

.gallery-item {
  outline: 1px solid rgba(196, 138, 58, .26);
  outline-offset: -5px;
}

.gallery-item img {
  height: clamp(190px, 21vw, 310px);
  object-fit: cover;
  transition: transform .42s ease, filter .28s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 138, 58, .8);
  box-shadow: 0 30px 76px rgba(17, 20, 22, .22);
  outline-color: rgba(255, 255, 255, .82);
}

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover::after {
  transform: translateY(0);
}

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

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(196, 138, 58, .14), transparent 34%),
    linear-gradient(90deg, rgba(17, 20, 22, .035) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, rgba(17, 20, 22, .025) 1px, transparent 1px) 0 0 / 88px 88px,
    #f4f1ea;
}

.contact-section::before {
  position: absolute;
  top: 44px;
  left: clamp(18px, 7vw, 120px);
  width: 220px;
  height: 220px;
  border: 1px solid rgba(196, 138, 58, .28);
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: clamp(28px, 7vw, 104px);
  align-items: center;
}

.contact-grid p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.85;
}

.contact-soft-cta {
  display: inline-flex;
  min-height: 52px;
  margin-top: 22px;
  padding: 0 28px;
  align-items: center;
  color: var(--ink);
  background: var(--copper);
  border: 1px solid rgba(17, 20, 22, .08);
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(196, 138, 58, .18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-soft-cta:hover {
  background: #d6a454;
  box-shadow: 0 18px 44px rgba(196, 138, 58, .26);
  transform: translateY(-2px);
}

.contact-card {
  display: grid;
  justify-self: start;
  width: min(100%, 404px);
  gap: 10px;
  padding: clamp(14px, 2vw, 22px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(196, 138, 58, .16), transparent 42%),
    var(--charcoal);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 22px 58px rgba(17, 20, 22, .16);
}

.contact-card a,
.contact-card div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 4px 16px;
  min-height: 92px;
  align-content: center;
  align-items: center;
  padding: 16px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.contact-card a:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(196, 138, 58, .55);
  transform: translateY(-2px);
}

.contact-card span {
  grid-column: 2;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
}

.contact-card strong {
  grid-column: 2;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.35;
}

.contact-card a::before,
.contact-card div::before {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  justify-self: center;
  color: #111417;
  background: var(--copper);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
}

.contact-card a[href^="tel:"]::before {
  content: "☎";
}

.contact-card a[href^="mailto:"]::before {
  content: "✉";
}

.contact-card div::before {
  content: "⌖";
}

.quote-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 130px 18px 70px;
  color: var(--white);
  background-position: center;
  background-size: cover;
  text-align: center;
  isolation: isolate;
}

.quote-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(20, 29, 67, .72);
  content: "";
}

.quote-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(42px, 5vw, 72px);
}

.quote-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
}

.quote-page {
  padding: clamp(70px, 8vw, 120px) 18px;
  background:
    linear-gradient(135deg, rgba(196, 138, 58, .12), transparent 36%),
    linear-gradient(90deg, rgba(17, 20, 22, .035) 1px, transparent 1px) 0 0 / 82px 82px,
    linear-gradient(0deg, rgba(17, 20, 22, .025) 1px, transparent 1px) 0 0 / 82px 82px,
    #f4f1ea;
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .78fr);
  gap: clamp(24px, 4vw, 46px);
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.quote-form {
  display: grid;
  gap: 17px;
  padding: clamp(34px, 4.4vw, 62px);
  background: var(--white);
  border: 1px solid rgba(17, 20, 22, .12);
  box-shadow: 0 30px 90px rgba(17, 20, 22, .12);
}

.quote-kicker {
  margin: 0;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
}

.quote-form h2 {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.12;
  font-weight: 800;
}

.quote-intro {
  max-width: 560px;
  margin: -4px 0 14px;
  color: #59615f;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 450;
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form label span {
  color: #596579;
  font-size: 14px;
  font-weight: 700;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid rgba(17, 20, 22, .14);
  border-radius: 4px;
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: rgba(196, 138, 58, .8);
  box-shadow: 0 0 0 4px rgba(196, 138, 58, .16);
}

.quote-form textarea {
  resize: vertical;
}

.quote-form button {
  min-height: 58px;
  margin-top: 8px;
  color: var(--ink);
  background: var(--copper);
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(196, 138, 58, .26);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.quote-form button:hover {
  background: #d6a454;
  box-shadow: 0 20px 44px rgba(196, 138, 58, .32);
  transform: translateY(-2px);
}

.quote-info {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(196, 138, 58, .16), transparent 42%),
    var(--charcoal);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 28px 80px rgba(17, 20, 22, .18);
}

.quote-info-head {
  padding: 10px 4px 20px;
}

.quote-info-head p {
  margin: 0 0 8px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3px;
}

.quote-info-head h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.15;
  font-weight: 800;
}

.quote-info-head span {
  display: block;
  max-width: 320px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 450;
}

.quote-info a {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px 16px;
  align-items: center;
  min-height: 104px;
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .12);
  text-align: right;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}

.quote-info a:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(196, 138, 58, .55);
  transform: translateY(-2px);
}

.quote-info a > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  grid-row: span 2;
  color: var(--ink);
  background: var(--copper);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 800;
}

.quote-info strong {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 15px;
  font-weight: 700;
}

.quote-info em {
  color: var(--white);
  font-style: normal;
  font-size: 19px;
  font-weight: 750;
  line-height: 1.45;
  text-shadow: none;
}

.projects-page {
  min-height: 100vh;
  padding: 150px 18px 90px;
  background:
    linear-gradient(90deg, rgba(17, 20, 22, .025) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(0deg, rgba(17, 20, 22, .02) 1px, transparent 1px) 0 0 / 86px 86px,
    #f4f1ea;
}

.projects-page-head {
  width: min(820px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.projects-page-head h1 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 800;
}

.projects-page-head p {
  color: #59615f;
  font-size: 18px;
}

.projects-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px 20px;
  width: min(1420px, 100%);
  margin: 0 auto;
}

.project-list-card {
  overflow: hidden;
  background: transparent;
  transition: transform .28s ease, box-shadow .28s ease;
}

.project-list-card a {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(17, 20, 22, .12);
  box-shadow: 0 16px 42px rgba(17, 20, 22, .08);
  transition: border-color .28s ease, box-shadow .28s ease;
}

.project-list-card img {
  height: clamp(210px, 16vw, 285px);
  object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
}

.project-list-card div {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 92px;
  align-content: center;
  padding: 18px;
  background: var(--white);
  text-align: center;
  transition: background .28s ease, color .28s ease;
}

.project-list-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 1.4vw, 24px);
  font-weight: 850;
  transition: color .28s ease;
}

.project-list-card span {
  display: inline-grid;
  min-height: 32px;
  place-items: center;
  padding: 0 14px;
  color: #59615f;
  background: #f1efe8;
  border: 1px solid rgba(17, 20, 22, .08);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .28s ease, transform .28s ease, color .28s ease, background .28s ease, border-color .28s ease;
}

.project-list-card:hover {
  transform: translateY(-8px);
}

.project-list-card:hover a {
  border-color: rgba(196, 138, 58, .58);
  box-shadow: 0 28px 70px rgba(17, 20, 22, .18);
}

.project-list-card:hover img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.08);
}

.project-list-card:hover div {
  background:
    linear-gradient(135deg, rgba(196, 138, 58, .95), rgba(214, 164, 84, .92));
}

.project-list-card:hover h2 {
  color: #111417;
}

.project-list-card:hover span {
  color: var(--white);
  background: #17202a;
  border-color: rgba(17, 24, 32, .2);
  opacity: 1;
  transform: translateY(0);
}

.project-detail-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 145px 0 42px;
  align-items: end;
}

.project-detail-hero a {
  color: var(--copper);
  font-weight: 900;
}

.project-detail-hero h1 {
  margin: 8px 0 0;
  color: #666;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
}

.project-detail-hero ul {
  margin: 0;
  padding: 0;
  color: #343a40;
  list-style-position: inside;
  font-size: 18px;
  line-height: 1.75;
}

.project-detail-gallery {
  padding: 0 18px 90px;
  background: #f3f5f5;
}

.project-masonry {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-auto-rows: 180px;
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.project-photo {
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.project-photo.is-tall {
  grid-row: span 2;
}

.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .28s ease;
}

.project-photo:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.055);
}

.service-hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 88vh;
  padding-top: 82px;
  color: var(--white);
  background: var(--charcoal);
}

.service-hero__copy {
  display: grid;
  align-content: center;
  padding: clamp(42px, 6vw, 86px);
}

.service-hero__copy h1 {
  max-width: 760px;
}

.service-hero__copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
}

.service-hero__image img {
  height: 100%;
  min-height: 88vh;
  object-fit: cover;
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.mini-service {
  display: grid;
  min-height: 112px;
  align-content: space-between;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 900;
}

.mini-service span {
  color: var(--copper);
}

.mini-service.is-active {
  color: var(--white);
  background: var(--charcoal);
}

.site-footer {
  padding: clamp(44px, 5vw, 72px) clamp(18px, 5vw, 74px) 28px;
  color: rgba(255, 255, 255, .86);
  background:
    radial-gradient(circle at 76% 18%, rgba(196, 138, 58, .16), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(0deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 86px 86px,
    #343432;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.15fr) minmax(280px, .9fr) minmax(220px, .65fr);
  gap: clamp(20px, 3vw, 34px);
  width: min(1220px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.footer-brand {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  background: rgba(17, 24, 32, .32);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 22px 60px rgba(17, 20, 22, .16);
}

.footer-brand img {
  width: min(230px, 100%);
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .25));
}

.footer-brand p {
  max-width: 460px;
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.42;
  font-weight: 850;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: #f3962f;
  border: 1px solid rgba(243, 150, 47, .2);
  border-radius: 3px;
  font-size: 19px;
  font-weight: 950;
  transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social svg path {
  fill: currentColor;
  stroke: none;
}

.footer-social a[aria-label="Instagram"] svg path {
  fill: none;
  stroke: currentColor;
}

.footer-social a:hover {
  color: #111417;
  background: var(--copper);
  box-shadow: 0 12px 28px rgba(196, 138, 58, .22);
  transform: translateY(-2px);
}

.footer-social a:active,
.footer-social a:focus-visible {
  color: var(--copper);
  background: #17202a;
  border-color: rgba(196, 138, 58, .72);
  box-shadow: 0 0 0 3px rgba(196, 138, 58, .18), 0 14px 30px rgba(17, 20, 22, .28);
  transform: translateY(0) scale(.96);
  outline: none;
}

.footer-contact,
.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 2.6vw, 30px);
  background: rgba(17, 24, 32, .22);
  border: 1px solid rgba(255, 255, 255, .1);
}

.footer-contact h3,
.footer-links h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.footer-contact a,
.footer-links a {
  color: rgba(255, 255, 255, .9);
  font-weight: 800;
  transition: color .18s ease, transform .18s ease;
}

.footer-contact a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.footer-contact span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--copper);
  background: rgba(196, 138, 58, .12);
  border: 1px solid rgba(196, 138, 58, .22);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 950;
}

.footer-links a:first-of-type {
  color: var(--copper);
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--copper);
  transform: translateX(-3px);
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1120px, 100%);
  margin: clamp(24px, 4vw, 42px) auto 0;
  align-items: center;
  text-align: center;
}

.footer-trust strong,
.footer-trust span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .06);
  font-weight: 850;
}

.footer-trust strong {
  color: var(--copper);
  font-size: 20px;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(5, 8, 10, .88);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  width: auto;
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 22px 80px rgba(0, 0, 0, .35);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  left: 22px;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
}

.accessibility-widget {
  position: fixed;
  z-index: 80;
  top: 104px;
  left: 14px;
  direction: rtl;
}

.accessibility-toggle {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--copper);
  background:
    linear-gradient(135deg, rgba(196, 138, 58, .18), transparent 48%),
    #17202a;
  border: 1px solid rgba(196, 138, 58, .5);
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(17, 20, 22, .24);
  font-size: 25px;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}

.accessibility-toggle:hover,
.accessibility-widget.is-open .accessibility-toggle {
  color: #111417;
  background: var(--copper);
  box-shadow: 0 18px 44px rgba(196, 138, 58, .28);
  transform: translateY(-2px);
}

.accessibility-panel {
  position: absolute;
  top: 56px;
  left: 0;
  display: none;
  width: 260px;
  padding: 14px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(196, 138, 58, .08), transparent 46%),
    #f8f6ef;
  border: 1px solid rgba(17, 20, 22, .16);
  box-shadow: 0 22px 64px rgba(17, 20, 22, .24);
}

.accessibility-widget.is-open .accessibility-panel {
  display: grid;
  gap: 8px;
}

.accessibility-panel strong {
  display: block;
  padding: 4px 4px 10px;
  color: #17202a;
  border-bottom: 1px solid rgba(17, 20, 22, .1);
  font-size: 20px;
  font-weight: 900;
}

.accessibility-panel button {
  min-height: 42px;
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(17, 20, 22, .12);
  border-radius: 3px;
  font-weight: 800;
  text-align: right;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.accessibility-panel button:hover {
  color: #111417;
  background: rgba(196, 138, 58, .26);
  border-color: rgba(196, 138, 58, .48);
  transform: translateX(-2px);
}

.accessibility-panel button[data-accessibility="reset"] {
  color: var(--white);
  background: #17202a;
  border-color: rgba(196, 138, 58, .42);
}

.accessibility-panel button[data-accessibility="reset"]:hover {
  color: #111417;
  background: var(--copper);
}

body.a11y-large {
  font-size: 112%;
}

body.a11y-larger {
  font-size: 124%;
}

body.a11y-contrast {
  color: #fff;
  background: #000;
}

body.a11y-contrast .site-header,
body.a11y-contrast .site-footer,
body.a11y-contrast .contact-card,
body.a11y-contrast .quality,
body.a11y-contrast .service-hero {
  background: #000;
}

body.a11y-contrast .section,
body.a11y-contrast .standards-section,
body.a11y-contrast .services-section,
body.a11y-contrast .contact-section,
body.a11y-contrast .intro,
body.a11y-contrast .gallery-section {
  color: #fff;
  background: #000;
}

body.a11y-contrast h1,
body.a11y-contrast h2,
body.a11y-contrast h3,
body.a11y-contrast p,
body.a11y-contrast a {
  color: #fff;
}

body.a11y-grayscale {
  filter: grayscale(1);
}

body.a11y-links a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

body.a11y-motion *,
body.a11y-motion *::before,
body.a11y-motion *::after {
  scroll-behavior: auto !important;
  transition: none !important;
  animation: none !important;
}

@media (max-width: 1120px) {
  .catalog-product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .accessibility-widget {
    top: 86px;
    left: 10px;
  }

  .accessibility-toggle {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 82px);
    overflow: auto;
    padding: 18px;
    background: rgba(17, 24, 32, .98);
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  body.nav-open .main-nav {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    justify-self: center;
  }

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

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

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

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

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

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

  .legacy-slider-inner {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 48px));
    padding: 80px 0;
  }

  .legacy-slider-art {
    min-height: 420px;
  }

  .legacy-window {
    right: 50%;
    transform: translateX(50%);
  }

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

@media (max-width: 760px) {
  body {
    direction: ltr;
  }

  main,
  footer {
    direction: rtl;
  }

  .site-header {
    min-height: 74px;
    display: flex;
    direction: ltr;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 10px;
  }

  .brand {
    order: 3;
    flex: 0 0 74px;
    width: 74px;
    margin-inline-start: 0;
    transform: none;
  }

  .brand img {
    display: block;
    width: 100%;
    max-width: 74px;
  }

  .header-actions {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    gap: 7px;
  }

  .phone-chip {
    flex: 0 1 82px;
    min-width: 0;
    gap: 5px;
  }

  .phone-icon {
    display: none;
  }

  .phone-chip small {
    font-size: 10px;
    white-space: nowrap;
  }

  .phone-chip strong {
    max-width: 82px;
    overflow-wrap: anywhere;
    font-size: 13px;
  }

  .quote-chip {
    min-width: 102px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }

  .menu-toggle {
    order: 1;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .main-nav {
    top: 74px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 74px;
    align-items: center;
  }

  .hero-content {
    width: 100%;
    max-width: 100vw;
    margin: 0 0 134px;
    padding: 0 16px;
    text-align: center;
  }

  h1 {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-content p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  h2 {
    font-size: clamp(29px, 10vw, 42px);
  }

  .split,
  .quality,
  .contact-grid,
  .quote-shell,
  .project-detail-hero,
  .service-hero {
    grid-template-columns: 1fr;
  }

  .contact-card {
    justify-self: stretch;
    width: 100%;
  }

  .quote-info {
    gap: 10px;
    padding: 18px;
  }

  .quote-info-head {
    padding: 4px 2px 12px;
    text-align: center;
  }

  .quote-info-head h2 {
    font-size: clamp(30px, 9vw, 40px);
    font-weight: 800;
  }

  .quote-info-head span {
    display: block;
    max-width: 280px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.75;
  }

  .quote-info a {
    grid-template-columns: 52px 1fr;
    min-height: 96px;
    padding: 16px;
  }

  .quote-info a > span {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .quote-info em {
    overflow-wrap: anywhere;
    font-size: 17px;
  }

  .quality-image img,
  .service-hero__image img {
    min-height: 360px;
  }

  .service-hero {
    padding-top: 74px;
  }

  .service-grid,
  .projects-card-grid,
  .project-masonry,
  .category-image-grid,
  .gallery,
  .service-rail,
  .standards-stats,
  .standards-projects {
    grid-template-columns: 1fr;
  }

  .standards-intro {
    padding: 44px 0 28px;
  }

  .standards-intro p {
    font-size: 16px;
  }

  .standards-stats div {
    min-height: 112px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .standards-projects {
    gap: 8px;
    padding-top: 8px;
  }

  .standards-projects a {
    min-height: 210px;
  }

  .old-style-slider {
    min-height: auto;
  }

  .legacy-slider-inner {
    width: calc(100% - 36px);
    padding: 64px 0;
  }

  .legacy-slider-copy {
    text-align: center;
  }

  .legacy-slider-copy > p:first-child {
    letter-spacing: 1px;
    font-size: 15px;
  }

  .legacy-slider-copy h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .legacy-slider-copy span,
  .legacy-text {
    margin-right: auto;
    margin-left: auto;
  }

  .legacy-slider-copy a {
    min-width: 230px;
  }

  .legacy-slider-art {
    min-height: 310px;
  }

  .legacy-lines {
    right: 42%;
    width: 220px;
  }

  .legacy-shape {
    display: none;
  }

  .service-card,
  .service-card a {
    min-height: 390px;
  }

  .service-card {
    padding: 7px;
  }

  .service-card__body {
    padding: 24px;
  }

  .projects-page {
    padding-top: 118px;
  }

  .project-list-card img {
    height: 225px;
  }

  .project-detail-hero {
    padding-top: 118px;
  }

  .project-masonry {
    grid-auto-rows: 220px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .footer-inner {
    display: grid;
  }

  .footer-grid,
  .footer-trust {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-items: center;
  }

  .footer-contact a {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.legacy-slide-offices {
  display: none;
}

@media (max-width: 420px) {
  .site-header {
    gap: 6px;
    padding-inline: 8px;
  }

  .brand {
    flex-basis: 66px;
    width: 66px;
  }

  .brand img {
    max-width: 66px;
  }

  .quote-chip {
    min-width: 96px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .phone-chip {
    flex-basis: 72px;
  }

  .phone-chip small {
    font-size: 9px;
  }

  .phone-chip strong {
    max-width: 72px;
    font-size: 12px;
    line-height: 1.08;
  }

  .menu-toggle {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 760px) {
  .catalog-search div {
    grid-template-columns: 1fr;
  }

  .catalog-page-toolbar {
    display: grid;
  }

  .catalog-page-grid {
    grid-template-columns: 1fr;
  }

  .catalog-panel {
    grid-template-columns: 1fr;
  }

  .catalog-list {
    grid-template-columns: 1fr;
  }

  .catalog-product-grid {
    grid-template-columns: 1fr;
  }

  .catalog-product-card {
    min-height: 0;
    padding: 0;
  }

  .catalog-product-card img {
    min-height: 0;
    max-height: none;
  }

  .catalog-item {
    grid-template-columns: 46px 1fr;
    min-height: 80px;
    padding: 14px;
  }

  .catalog-item span {
    width: 40px;
    height: 40px;
  }
}
