:root {
  --ink: #20201d;
  --muted: #64645f;
  --paper: #f5f2ea;
  --white: #fff;
  --sand: #ddd2bf;
  --accent: #8b5d3b;
  --dark: #1d2928;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(25, 31, 30, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Noto Sans Hebrew", sans-serif;
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link:focus {
  position: fixed;
  top: 8px;
  right: 8px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 16px;
  clip: auto;
  background: var(--dark);
  color: #fff;
  z-index: 9999;
}
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 20px 0;
  color: #fff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img {
  width: 210px;
  filter: brightness(0) invert(1);
}
.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  font-weight: 700;
}
.nav a:hover,
.nav a:focus-visible {
  color: #e8d5bd;
}
.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  position: relative;
  color: #fff;
  background: #26312f url("/images/modern-home-exterior.webp") center/cover
    no-repeat;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 25, 24, 0.24),
    rgba(17, 25, 24, 0.78)
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 180px 90px;
  max-width: 720px;
  margin-inline-start: auto;
}
.eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #71472d;
}
.hero .eyebrow {
  color: #f3e5d3;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 1.03;
  margin: 0.15em 0 0.25em;
  font-weight: 500;
}
.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 620px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  cursor: pointer;
}
.btn.alt {
  background: transparent;
  border-color: #fff;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}
section {
  padding: 90px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 45px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
  font-weight: 500;
}
.section-head p {
  font-size: 1.12rem;
  margin: 0;
  color: var(--muted);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.about-copy {
  padding: 42px;
  background: var(--white);
  border-radius: var(--radius);
}
.about-copy h2 {
  font-size: 2.35rem;
  margin: 0 0 20px;
}
.about-copy p {
  color: var(--muted);
}
.about-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
}
.services {
  background: var(--dark);
  color: #fff;
}
.services .section-head p {
  color: #c8d0cd;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}
.service-card h3 {
  font-size: 1.45rem;
  margin: 0 0 10px;
}
.service-card p {
  margin: 0;
  color: #c8d0cd;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #ddd;
}
.gallery figure:nth-child(1),
.gallery figure:nth-child(4) {
  grid-column: span 7;
}
.gallery figure:nth-child(2),
.gallery figure:nth-child(3) {
  grid-column: span 5;
}
.gallery figure:nth-child(n + 5) {
  grid-column: span 4;
}
.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.35s;
}
.gallery figure:nth-child(1) img,
.gallery figure:nth-child(4) img {
  height: 430px;
}
.gallery figure:hover img {
  transform: scale(1.025);
}
.reviews {
  background: #ece6db;
}
.gmb-reviews {
  min-height: 180px;
}
.review-fallback {
  max-width: 540px;
  margin: auto;
  text-align: center;
  padding: 32px;
  background: #fff;
  border-radius: var(--radius);
}
.contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
}
.contact-details h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 24px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}
.contact-list li {
  margin: 10px 0;
}
.contact-list a {
  font-weight: 700;
  color: var(--accent);
}
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--paper);
  padding: 34px;
  border-radius: var(--radius);
}
label {
  font-weight: 700;
}
label span {
  display: block;
  margin-bottom: 5px;
}
input,
textarea {
  width: 100%;
  border: 1px solid #c8c1b5;
  border-radius: 10px;
  padding: 13px;
  font: inherit;
  background: #fff;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.full {
  grid-column: 1/-1;
}
.privacy {
  font-size: 0.88rem;
  color: var(--muted);
}
.semantic-footer {
  padding: 28px 20px 110px;
  background: #111918;
  color: #e8ecea;
  text-align: center;
}
.semantic-footer a {
  margin: 0 8px;
}
.fab-container {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 1100;
  display: flex;
  gap: 10px;
}
.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.25);
}
.fab svg {
  width: 25px;
  fill: currentColor;
}
.fab.call {
  background: #8b5d3b;
}
.simple-page {
  min-height: 80vh;
  padding: 120px 24px 80px;
  max-width: 860px;
  margin: auto;
}
.simple-page h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.1;
}
.simple-page h2 {
  margin-top: 34px;
}
.simple-page .brand-dark img {
  width: 220px;
  margin-bottom: 36px;
}
.site-map-list {
  font-size: 1.15rem;
  line-height: 2;
}
.crumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.crumb a {
  color: var(--accent);
}
@media (max-width: 820px) {
  .nav {
    display: none;
  }
  .brand img {
    width: 170px;
  }
  .hero {
    min-height: 760px;
    background-image: url("/images/modern-home-exterior-mobile.webp");
  }
  .hero-content {
    padding-top: 160px;
  }
  .section-head,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .gallery figure,
  .gallery figure:nth-child(n) {
    grid-column: span 6;
  }
  .gallery img,
  .gallery figure:nth-child(1) img,
  .gallery figure:nth-child(4) img {
    height: 280px;
  }
  section {
    padding: 68px 0;
  }
}
@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .hero h1 {
    font-size: 2.65rem;
  }
  .hero-content {
    padding-bottom: 70px;
  }
  .actions {
    align-items: stretch;
    flex-direction: column;
  }
  .section-head {
    gap: 18px;
  }
  .about-copy {
    padding: 26px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery figure,
  .gallery figure:nth-child(n) {
    grid-column: auto;
  }
  .gallery img,
  .gallery figure:nth-child(1) img,
  .gallery figure:nth-child(4) img {
    height: 270px;
  }
  form {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .full {
    grid-column: auto;
  }
  .privacy {
    font-size: 1rem;
  }
  .hero h1,
  .section-head h2,
  .contact-details h2,
  .simple-page h1 {
    line-height: 1.22;
  }
  .fab-container {
    bottom: 16px;
    left: 16px;
  }
  .fab {
    width: 48px;
    height: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
