:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --text: #151515;
  --muted: #5f5647;
  --line: #e6dcc6;
  --brand: #111111;
  --accent: #c8aa6e;
  --accent-deep: #8d6f39;
  --shadow: 0 18px 40px rgba(23, 23, 23, 0.08);
  --radius: 22px;
  --max: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
.home-page {
  background:
    linear-gradient(rgba(255, 253, 249, 0.82), rgba(251, 250, 247, 0.82)),
    url("/assets/background-house.jpg") center top / cover fixed no-repeat;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 1000; background: var(--brand); color: #fff;
  padding: 0.75rem 1rem; border-radius: 999px;
}
.site-header {
  position: sticky; top: 0; z-index: 20; backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 14px 34px rgba(18, 20, 23, 0.05);
}
.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(200,170,110,0.18) 18%, rgba(17,17,17,0.82) 50%, rgba(200,170,110,0.18) 82%, transparent 100%);
}
.site-header::after {
  content: none;
}
.topbar, .wrap, .footer-grid { width: min(100% - 2rem, var(--max)); margin: 0 auto; }
.topbar { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.8rem 0; }
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: rgba(18, 20, 23, 0.99);
}
.brand-stack {
  display: inline-flex;
  flex-direction: column;
  gap: 0.16rem;
  position: relative;
  padding-left: 1rem;
  white-space: nowrap;
}
.brand-stack::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18rem;
  bottom: 0.18rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(200,170,110,0.14), rgba(17,17,17,0.78), rgba(200,170,110,0.14));
}
.brand-stack strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.04rem, 1.45vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(18, 20, 23, 0.98);
}
.brand-stack small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.nav-toggle { display: none; border: 0; background: transparent; font-size: 1.6rem; color: var(--brand); }
.site-nav { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.site-nav a {
  color: rgba(17, 17, 17, 0.86);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.48rem 0.68rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.active {
  color: var(--brand);
  background: rgba(200, 170, 110, 0.1);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(17, 17, 17, 0.08);
}
.button, button, input[type="submit"] {
  border: 0; border-radius: 999px; padding: 0.85rem 1.2rem; font-weight: 700; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover, button:hover, input[type="submit"]:hover, .button:focus-visible, button:focus-visible, input[type="submit"]:focus-visible { transform: translateY(-1px); }
.button-primary { color: #ffffff; background: #171717; box-shadow: 0 12px 24px rgba(23, 23, 23, 0.18); }
.button-secondary { color: var(--brand); background: #ffffff; border: 1px solid rgba(17, 17, 17, 0.12); }
.button-soft { color: var(--brand); background: rgba(200, 170, 110, 0.12); }
main section { padding: 3.4rem 0; }
.hero { padding: 3rem 0 2rem; }
.hero-home {
  position: relative;
  overflow: hidden;
}
.service-hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 252, 247, 0.66), rgba(255, 252, 247, 0.66)),
    var(--service-hero-image) center/cover no-repeat;
}
.service-hero > .wrap {
  position: relative;
  z-index: 1;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.hero-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 24px;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}
.hero-grid, .two-col, .footer-grid, .service-layout, .contact-layout, .card-grid, .trust-grid, .faq-list, .area-grid, .blog-grid, .testimonial-grid, .badge-row, .benefits, .stats { display: grid; gap: 1rem; }
.hero-grid { grid-template-columns: 1.16fr 0.84fr; align-items: center; gap: 1.25rem; }
.two-col, .service-layout, .contact-layout { grid-template-columns: 1.16fr 0.84fr; gap: 1.25rem; }
.footer-grid { grid-template-columns: 1.1fr 0.9fr 0.9fr; }
.card-grid, .trust-grid, .area-grid, .blog-grid, .testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 1.2rem; }
.badge-row { grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: 1rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-deep); font-weight: 800;
  background: rgba(200, 170, 110, 0.12); padding: 0.32rem 0.72rem; border-radius: 999px;
}
h1, h2, h3 { line-height: 1.14; margin: 0 0 0.85rem; letter-spacing: -0.02em; font-family: Georgia, "Times New Roman", serif; }
h1 { font-size: clamp(2rem, 4vw, 3.45rem); max-width: 13ch; font-weight: 600; }
h2 { font-size: clamp(1.45rem, 2.5vw, 2.15rem); font-weight: 600; }
h3 { font-size: 1.02rem; font-weight: 600; }
p, li { color: var(--muted); font-size: 1rem; }
.lead { font-size: 1rem; max-width: 58ch; }
.card, .testimonial, .faq-item, .contact-card {
  background: rgba(255, 255, 255, 0.96); border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 18px; box-shadow: 0 12px 28px rgba(23, 23, 23, 0.05); padding: 1.05rem;
}
.hero-panel {
  padding: 0.55rem;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
  max-width: 390px;
  justify-self: end;
}
.hero-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}
.hero-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0.55rem;
  min-height: 320px;
  max-width: 430px;
  margin-left: auto;
}
.hero-gallery-main,
.hero-gallery-stack {
  display: grid;
  gap: 0.55rem;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: #ffffff;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-gallery-main .hero-photo {
  min-height: 320px;
}
.hero-gallery-stack .hero-photo {
  min-height: 154px;
}
.badge { background: #faf7f0; padding: 0.78rem; border-radius: 16px; border: 1px solid rgba(200, 170, 110, 0.12); text-align: center; color: var(--brand); font-weight: 700; }
.list-clean, .breadcrumbs ol, .service-points { margin: 0; padding: 0; list-style: none; }
.list-clean li, .service-points li { position: relative; padding-left: 1.4rem; margin-bottom: 0.65rem; }
.list-clean li::before, .service-points li::before {
  content: ""; position: absolute; left: 0; top: 0.6rem; width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--accent-deep);
}
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1.2rem; margin-bottom: 1.25rem; }
.section-heading p { max-width: 58ch; margin: 0; }
.breadcrumbs, .cta-band, .note {
  border-radius: var(--radius);
}
.breadcrumbs {
  margin-top: 1rem; background: rgba(200, 170, 110, 0.08); border: 1px solid rgba(200, 170, 110, 0.14); padding: 0.8rem 0.95rem;
}
.breadcrumbs ol { display: flex; gap: 0.65rem; flex-wrap: wrap; color: var(--muted); font-size: 0.95rem; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.65rem; }
.cta-band { background: #171717; color: #ffffff; padding: 1.5rem; }
.cta-band p, .cta-band h2 { color: #ffffff; }
form { display: grid; gap: 0.95rem; }
label { display: block; font-weight: 700; color: var(--accent-deep); margin-bottom: 0.35rem; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 0.82rem 0.9rem;
  font: inherit; color: var(--text); background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
.form-grid { display: grid; gap: 0.95rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.faq-item summary { font-weight: 700; color: var(--brand); cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0.8rem 0 0; }
.site-footer { background: #171b20; color: #e8edf0; padding: 3.2rem 0 1.3rem; }
.site-footer p, .site-footer a, .site-footer li { color: #e8edf0; }
.footer-bottom {
  width: min(100% - 2rem, var(--max)); margin: 2rem auto 0; padding-top: 1rem;
  border-top: 1px solid rgba(232, 237, 240, 0.14); color: #aebbc1; font-size: 0.92rem;
}
.floating-call { position: fixed; right: 1rem; bottom: 1rem; z-index: 30; }
.floating-call a {
  display: inline-flex; align-items: center; gap: 0.65rem; padding: 0.82rem 0.98rem; border-radius: 999px;
  color: #ffffff; background: #171717; box-shadow: 0 16px 28px rgba(23, 23, 23, 0.28); font-weight: 700;
}
.hero-clean-shell {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.05);
  padding: clamp(1.2rem, 2vw, 2rem);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(200, 170, 110, 0.12);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-proof span {
  padding: 0.45rem 0.7rem;
  background: #faf7f0;
  border: 1px solid rgba(200, 170, 110, 0.12);
  border-radius: 999px;
}
@media (max-width: 920px) {
  .hero-grid, .two-col, .service-layout, .contact-layout, .footer-grid, .area-grid, .blog-grid, .card-grid, .trust-grid, .testimonial-grid, .badge-row, .benefits, .stats, .form-grid { grid-template-columns: 1fr; }
  .service-hero {
    border-radius: 22px;
  }
  .service-hero > .wrap {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .hero-gallery {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-gallery-main .hero-photo,
  .hero-gallery-stack .hero-photo {
    min-height: 180px;
  }
  .site-header::before {
    height: 2px;
  }
  .topbar { padding: 0.7rem 0; }
  .brand-stack {
    padding-left: 0.75rem;
  }
  .brand-stack strong { font-size: 1rem; letter-spacing: 0.12em; }
  .brand-stack small { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.7rem; border-radius: 999px; font-size: 1rem; font-weight: 700;
    border: 1px solid rgba(17, 17, 17, 0.12); background: rgba(255, 255, 255, 0.9);
  }
  .site-nav {
    position: absolute; left: 0; right: 0; top: calc(100% + 1px); display: none; flex-direction: column;
    align-items: stretch; gap: 0.15rem; padding: 0.75rem; background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 18px 34px rgba(18, 20, 23, 0.12);
    max-height: calc(100vh - 100%); overflow-y: auto;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.7rem 0.9rem; font-size: 1rem; }
  .header-cta { display: none; }
}
