:root {
  --bg: #f5f4f1;
  --surface: #ffffff;
  --surface-2: #f0efeb;
  --text: #171717;
  --muted: #646464;
  --dark: #111111;
  --red: #d81f26;
  --line: #e4e2db;
  --white: #ffffff;
  --shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.1;
  margin: 0 0 14px;
}
p { margin: 0 0 14px; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 12, 12, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.brand img {
  height: 56px;
  width: auto;
  border-radius: 10px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
  font-weight: 600;
}
.nav-links a { opacity: 0.92; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  padding: 11px 16px;
  background: var(--red);
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 20px;
}
.hero {
  position: relative;
  color: #fff;
  display: grid;
  align-items: center;
}
.premium-hero {
  min-height: 88vh;
  background: url('assets/images/hero_deck.jpg') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.62) 46%, rgba(0,0,0,.28) 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}
.hero-grid.two-col {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
}
.hero-copy {
  max-width: 680px;
}
.eyebrow {
  display: inline-block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow.dark { color: var(--red); }
.hero h1,
.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  margin-bottom: 20px;
}
.hero p,
.page-hero p {
  font-size: 1.05rem;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-points span {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
}
.glass-card {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.glass-card.light {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
  backdrop-filter: none;
}
.hero-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.check-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}
.check-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1;
}
.hero-panel-callout {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-panel-callout p:last-child { margin-bottom: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.dark-outline {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.full { width: 100%; }
.text-link {
  color: var(--red);
  font-weight: 700;
}
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 22px 0;
}
.trust-grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.trust-grid strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.trust-grid span { color: var(--muted); font-size: 0.95rem; }
.section { padding: 82px 0; }
.alt-section { background: var(--surface-2); }
.section-heading { margin-bottom: 36px; }
.section-heading.center { text-align: center; }
.section-heading.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-heading p:last-child { color: var(--muted); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.feature-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 280px;
  box-shadow: var(--shadow);
}
.feature-tile.tall { min-height: 420px; }
.feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.62));
}
.feature-tile figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.96rem; }
.category-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 42px;
}
.category-block.reverse { grid-template-columns: 1fr 280px; }
.category-block.reverse .category-text { order: 2; }
.category-block.reverse .gallery { order: 1; }
.category-text {
  position: sticky;
  top: 96px;
}
.category-text h3 { font-size: 1.8rem; }
.category-text p:last-of-type { color: var(--muted); }
.gallery {
  display: grid;
  gap: 18px;
}
.gallery.four-up { grid-template-columns: repeat(2, 1fr); }
.gallery.three-up { grid-template-columns: repeat(3, 1fr); }
.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-callout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  margin-bottom: 24px;
}
.review-main,
.review-side {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.review-label {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.review-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  word-break: break-all;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.stars {
  color: #e0a800;
  font-size: 1.1rem;
  letter-spacing: .06em;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}
.about-box {
  background: #141414;
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.about-box ul {
  padding-left: 18px;
  margin: 18px 0 0;
}
.about-box li { margin-bottom: 10px; }
.cta-section {
  background: #141414;
  color: #fff;
  padding: 82px 0;
}
.cta-section.compact { padding: 64px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
}
.contact-info a {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}
.quote-form {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.quote-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 14px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid #d6d6d6;
  font: inherit;
}
.quote-form small {
  display: block;
  color: var(--muted);
  margin-top: 14px;
}
.page-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f3f2ee 100%);
  padding: 90px 0 40px;
  border-bottom: 1px solid var(--line);
}
.page-hero-content { text-align: center; }
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.gallery-card:hover { transform: translateY(-2px); }
.gallery-card.hidden { display: none; }
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-card figcaption {
  padding: 12px 14px;
  font-weight: 700;
  color: var(--muted);
}
.cta-card-simple {
  display: grid;
  gap: 12px;
}
footer {
  background: #0a0a0a;
  color: rgba(255,255,255,.82);
  padding: 24px 0 18px;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-branding strong {
  display: block;
  margin-bottom: 2px;
}
.footer-branding p { margin: 0; color: rgba(255,255,255,.66); }
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  height: 56px;
  width: auto;
  border-radius: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 18px;
  padding-top: 18px;
}
.footer-bottom p { margin: 0; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
}
.lightbox.open { display: flex; }
.lightbox-image {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
}
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid.two-col,
  .category-block,
  .category-block.reverse,
  .review-callout,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .category-block.reverse .category-text,
  .category-block.reverse .gallery { order: initial; }
  .category-text { position: static; }
  .gallery.three-up,
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    right: 16px;
    background: #111;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
  }
  .nav-links.open { display: flex; }
  .trust-grid,
  .testimonial-grid,
  .showcase-grid { grid-template-columns: 1fr; }
  .feature-tile,
  .feature-tile.tall { min-height: 260px; }
}
@media (max-width: 640px) {
  .brand img, .footer-logo { height: 46px; }
  .premium-hero { min-height: 78vh; }
  .hero-grid { padding: 64px 0; }
  .service-grid,
  .gallery.four-up,
  .gallery.three-up,
  .gallery-page-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .footer-wrap,
  .footer-branding { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

.before-after-section { background: #fff; }
.before-after-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.before-after-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); }
.ba-images figure { margin: 0; position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #ddd; }
.ba-images img { width: 100%; height: 100%; object-fit: cover; }
.ba-images span { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(0,0,0,.72); color: #fff; padding: 6px 9px; border-radius: 999px; font-size: .72rem; font-weight: 700; }
.ba-copy { padding: 22px; }
.ba-copy p { color: var(--muted); margin-bottom: 0; }
.service-area-section { background: linear-gradient(180deg,#f5f4f1,#eceae4); }
.service-area-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: center; }
.service-area-grid h2 { font-size: clamp(2rem,4vw,3rem); }
.service-area-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.service-area-card { background: #141414; color: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.area-chips span { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); padding: 9px 12px; border-radius: 999px; }
@media (max-width: 900px) { .before-after-grid, .service-area-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .ba-images { grid-template-columns: 1fr; } }
