
:root {
  --ink: #101820;
  --ink-2: #1b2730;
  --paper: #f5f3ee;
  --white: #ffffff;
  --accent: #f2a900;
  --accent-dark: #ca8900;
  --muted: #65727c;
  --line: #dedbd3;
  --max: 1180px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16,24,32,.96);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--accent); color: var(--ink); font-family: "Oswald", sans-serif;
  font-weight: 700; letter-spacing: .03em; border-radius: 8px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 15px; }
.brand-text small { font-size: 11px; opacity: .7; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { color: white; text-decoration: none; font-size: 14px; font-weight: 600; }
.main-nav a:hover { color: var(--accent); }
.main-nav .nav-call {
  background: var(--accent); color: var(--ink); padding: 12px 16px; border-radius: 9px;
}
.menu-toggle { display: none; background: none; border: 0; color: white; font-size: 28px; }

.hero {
  min-height: 700px;
  position: relative;
  background:
    linear-gradient(105deg, rgba(16,24,32,.96) 10%, rgba(16,24,32,.82) 50%, rgba(16,24,32,.64) 100%),
    radial-gradient(circle at 85% 20%, #52616d, #18232c 55%, #101820);
  color: white;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  border: 90px solid rgba(242,169,0,.08);
  border-radius: 50%;
  right: -220px; top: -110px;
}
.hero-grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
}
.eyebrow.dark { color: #8f6100; }
h1,h2,h3 { font-family: "Oswald", sans-serif; line-height: 1.03; margin-top: 0; }
h1 { font-size: clamp(50px, 7vw, 86px); max-width: 760px; margin-bottom: 24px; letter-spacing: -.02em; }
h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 18px; }
h3 { font-size: 25px; margin-bottom: 10px; }
.hero-sub { max-width: 680px; font-size: 20px; color: rgba(255,255,255,.82); margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px; border-radius: 10px;
  font-weight: 800; text-decoration: none; border: 2px solid transparent;
  cursor: pointer; font: inherit;
}
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: #ffbb20; }
.btn-secondary { border-color: rgba(255,255,255,.5); color: white; background: transparent; }
.btn-secondary:hover { border-color: white; }
.btn-light { background: white; color: var(--ink); }
.trust-row { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.76); }

.hero-card {
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 30px; backdrop-filter: blur(8px);
}
.hero-card h2 { font-size: 30px; }
.hero-card ul { margin: 0 0 22px; padding: 0; list-style: none; }
.hero-card li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.text-link { color: var(--accent); font-weight: 800; text-decoration: none; }

.strip { background: var(--accent); }
.strip-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.strip-grid div { padding: 20px 24px; border-right: 1px solid rgba(16,24,32,.18); text-align: center; }
.strip-grid div:last-child { border-right: 0; }
.strip strong, .strip span { display: block; }
.strip strong { font-family: "Oswald", sans-serif; font-size: 22px; }
.strip span { font-size: 12px; font-weight: 700; opacity: .75; text-transform: uppercase; letter-spacing: .08em; }

.section { padding: 96px 0; }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading p:last-child { color: var(--muted); font-size: 18px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.service-card {
  background: white;
  border: 1px solid var(--line);
  padding: 26px;
  border-radius: var(--radius);
  min-height: 230px;
  box-shadow: 0 10px 30px rgba(16,24,32,.04);
}
.service-card p { color: var(--muted); font-size: 14px; }
.service-icon { font-size: 28px; margin-bottom: 20px; }
.service-card.featured { background: var(--ink); color: white; border-color: var(--ink); }
.service-card.featured p { color: rgba(255,255,255,.7); }
.service-card.featured a { color: var(--accent); font-weight: 700; text-decoration: none; }

.section-dark { background: var(--ink); color: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-copy p { color: rgba(255,255,255,.72); font-size: 18px; }
.about-copy .btn { margin-top: 16px; }

.project-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.project-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(16,24,32,.05), rgba(16,24,32,.16)),
    repeating-linear-gradient(45deg, #eee9df, #eee9df 12px, #e5e0d6 12px, #e5e0d6 24px);
  border: 1px solid var(--line);
  display: flex; align-items: end; padding: 20px;
}
.project-placeholder span {
  background: rgba(16,24,32,.92); color: white; padding: 9px 12px; border-radius: 7px; font-weight: 700;
}

.cta-band { background: var(--accent); padding: 48px 0; }
.cta-flex { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { margin-bottom: 0; font-size: clamp(34px, 4vw, 48px); }
.cta-band .eyebrow { color: rgba(16,24,32,.65); }

.estimate-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.estimate-intro { color: var(--muted); font-size: 17px; }
.contact-card {
  margin-top: 28px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: white;
  display: flex; flex-direction: column; align-items: flex-start;
}
.contact-card span, .contact-card small { color: var(--muted); }
.contact-card a { font-family: "Oswald", sans-serif; font-size: 30px; text-decoration: none; color: var(--ink); margin: 4px 0; }

.estimate-form {
  background: white; padding: 30px; border-radius: var(--radius); border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.estimate-form label { display: flex; flex-direction: column; gap: 8px; font-weight: 700; font-size: 13px; }
.estimate-form input, .estimate-form select, .estimate-form textarea {
  width: 100%; padding: 14px 15px; border: 1px solid #c9c6bd; border-radius: 9px; font: inherit; background: #fff;
}
.estimate-form input:focus, .estimate-form select:focus, .estimate-form textarea:focus {
  outline: 3px solid rgba(242,169,0,.25); border-color: var(--accent-dark);
}
.full { grid-column: 1 / -1; }
.form-note { margin: -4px 0 0; font-size: 11px; color: var(--muted); text-align: center; }

.service-area { background: #e9e5dc; padding: 60px 0; text-align: center; }
.service-area h2 { font-size: 38px; margin-bottom: 8px; }
.service-area p { color: var(--muted); margin-top: 0; }
.service-area a { font-weight: 800; font-size: 20px; }

footer { background: #0b1117; color: white; padding: 56px 0 100px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-grid div { display: flex; flex-direction: column; gap: 8px; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.62); text-decoration: none; margin: 0; font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 36px; padding-top: 22px; color: rgba(255,255,255,.45); font-size: 12px; }

.mobile-call { display: none; }

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--ink); flex-direction: column; align-items: stretch; padding: 20px;
  }
  .main-nav.open { display: flex; }
  .hero-grid, .about-grid, .estimate-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-grid { padding: 80px 0; }
  .hero { min-height: unset; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .project-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .brand-text strong { font-size: 13px; }
  .brand-mark { width: 42px; height: 42px; }
  .hero-grid { padding: 64px 0 48px; }
  h1 { font-size: 50px; }
  .hero-sub { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .trust-row { display: grid; gap: 8px; }
  .hero-card { padding: 24px; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-grid div { border-right: 0; border-bottom: 1px solid rgba(16,24,32,.18); }
  .section { padding: 72px 0; }
  .service-grid, .project-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 24px; }
  .cta-flex { align-items: flex-start; flex-direction: column; }
  .estimate-form { grid-template-columns: 1fr; padding: 20px; }
  .estimate-form > * { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-call {
    display: flex; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
    min-height: 52px; align-items: center; justify-content: center;
    background: var(--accent); color: var(--ink); text-decoration: none; font-weight: 900;
    border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,.28);
  }
}


/* Final portfolio + conversion sections */
.projects-section{background:#f7f5ef}.project-case{margin-top:44px;padding:28px;border:1px solid var(--line);border-radius:18px;background:white}.project-case+ .project-case{margin-top:28px}.project-case-head{display:grid;grid-template-columns:.75fr 1.25fr;gap:32px;align-items:end;margin-bottom:22px}.project-case-head h3{font-size:42px;margin:8px 0 0}.project-case-head p{margin:0;color:var(--muted);font-size:16px;line-height:1.7}.project-tag{display:inline-block;background:var(--accent);color:var(--ink);font-weight:800;font-size:12px;text-transform:uppercase;letter-spacing:.08em;padding:7px 10px;border-radius:999px}.project-photo-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}.project-photo-grid figure,.real-project-grid figure{margin:0;background:#101820;border-radius:12px;overflow:hidden}.project-photo-grid img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}.project-photo-grid figcaption,.real-project-grid figcaption{padding:10px 12px;color:white;font-size:12px;font-weight:700}.project-case-compact .real-project-grid{grid-template-columns:repeat(3,1fr)}.process-section{background:white}.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.process-grid article{padding:26px;border:1px solid var(--line);border-radius:14px;background:#fff}.process-grid article>span{font-family:"Oswald",sans-serif;font-size:34px;font-weight:700;color:var(--accent-dark)}.process-grid h3{font-size:23px;margin:10px 0}.process-grid p{color:var(--muted);margin:0;line-height:1.6}.why-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:70px}.why-list{display:grid;gap:14px}.why-list div{padding:18px 0;border-bottom:1px solid rgba(255,255,255,.14);display:flex;flex-direction:column;gap:5px}.why-list strong{font-size:18px}.why-list span{color:rgba(255,255,255,.68);line-height:1.55}@media(max-width:900px){.project-case-head,.why-grid{grid-template-columns:1fr}.project-photo-grid{grid-template-columns:repeat(2,1fr)}.process-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:560px){.project-case{padding:16px}.project-case-head h3{font-size:34px}.project-photo-grid,.process-grid,.project-case-compact .real-project-grid{grid-template-columns:1fr}.project-photo-grid img{aspect-ratio:16/11}}


/* 2026 finish update */
.logo-brand img {
  width: 220px;
  height: 58px;
  object-fit: cover;
  object-position: center 48%;
  border-radius: 4px;
}
.about-badges { display:flex; flex-wrap:wrap; gap:8px; margin:22px 0 0; }
.about-badges span {
  border:1px solid rgba(255,255,255,.22); border-radius:999px; padding:8px 11px;
  font-size:11px; text-transform:uppercase; letter-spacing:.07em; font-weight:800;
}
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:26px 0; }
.why-grid div { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); padding:16px; border-radius:12px; }
.why-grid strong, .why-grid span { display:block; }
.why-grid span { font-size:12px; color:rgba(255,255,255,.65); margin-top:4px; }

.projects-section { background:#f5f3ee; }
.project-case {
  margin: 0 0 30px; background:#fff; border:1px solid var(--line);
  border-radius:var(--radius); overflow:hidden;
}
.project-case-copy { padding:28px 30px 18px; }
.project-case-copy h3 { font-size:38px; margin:10px 0 10px; }
.project-case-copy p { color:var(--muted); max-width:760px; }
.project-tag {
  display:inline-block; background:var(--accent); color:var(--ink); border-radius:6px;
  padding:6px 9px; text-transform:uppercase; letter-spacing:.08em; font-size:10px; font-weight:900;
}
.case-gallery { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:#ddd; }
.case-gallery figure { margin:0; position:relative; background:#111; min-height:250px; }
.case-gallery img { width:100%; height:100%; min-height:250px; object-fit:cover; display:block; }
.case-gallery figcaption {
  position:absolute; left:10px; bottom:10px; background:rgba(16,24,32,.9); color:white;
  border-radius:6px; padding:7px 9px; font-size:11px; font-weight:800;
}
.case-gallery-two { grid-template-columns:1.5fr 1fr; }
.feature-dark { background:var(--ink); color:white; border-color:var(--ink); }
.feature-dark .project-case-copy p { color:rgba(255,255,255,.7); }

@media (max-width: 960px) {
  .logo-brand img { width:190px; height:50px; }
  .case-gallery { grid-template-columns:1fr 1fr; }
  .case-gallery-two { grid-template-columns:1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-wrap { min-height:64px; }
  .site-header .container { width:min(calc(100% - 18px), var(--max)); }
  .logo-brand img { width:165px; height:44px; }
  .why-grid { grid-template-columns:1fr; }
  .case-gallery, .case-gallery-two { grid-template-columns:1fr; }
  .case-gallery figure, .case-gallery img { min-height:280px; }
  .project-case-copy { padding:24px 20px 16px; }
}


/* Real-photo services update */
.services-photo-section { background:#f7f5ef; }
.photo-service-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.photo-service-card {
  position:relative;
  min-height:330px;
  padding:0;
  overflow:hidden;
  border:0;
  border-radius:18px;
  background:
    linear-gradient(to top, rgba(8,14,20,.95) 0%, rgba(8,14,20,.66) 42%, rgba(8,14,20,.10) 78%),
    var(--service-image) center / cover no-repeat;
  box-shadow:0 14px 34px rgba(16,24,32,.14);
  display:flex;
  align-items:flex-end;
  color:#fff;
}
.photo-service-card .service-card-content {
  width:100%;
  padding:24px 24px 26px;
}
.photo-service-card h3 {
  color:#fff;
  font-size:28px;
  line-height:1.06;
  margin:0 0 12px;
  text-shadow:0 2px 10px rgba(0,0,0,.25);
}
.photo-service-card h3::after {
  content:"";
  display:block;
  width:44px;
  height:4px;
  border-radius:999px;
  background:var(--accent);
  margin-top:12px;
}
.photo-service-card p,
.photo-service-card.featured p {
  color:rgba(255,255,255,.9);
  font-size:14px;
  line-height:1.55;
  margin:0;
  max-width:36ch;
}
.photo-service-card a,
.photo-service-card.featured a {
  display:inline-block;
  color:var(--accent);
  font-weight:800;
  text-decoration:none;
  margin-top:14px;
}
@media (max-width:950px) {
  .photo-service-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px) {
  .photo-service-grid { grid-template-columns:1fr; gap:14px; }
  .photo-service-card { min-height:300px; border-radius:16px; }
  .photo-service-card .service-card-content { padding:22px 20px 24px; }
  .photo-service-card h3 { font-size:27px; }
}

/* Local SEO content section */
.seo-local-section {
  background: #ffffff;
}
.seo-local-section .section-heading {
  max-width: 900px;
}
.seo-local-section strong {
  color: #111820;
}


/* Corrected project galleries */
.shower-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.shower-gallery figure {
  min-height: 260px;
  overflow: hidden;
  border-radius: 14px;
  background: #0d1721;
}
.shower-gallery figure.shower-feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 540px;
}
.shower-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
.shower-gallery .shower-feature img {
  min-height: 540px;
  object-position: center 42%;
}
.shower-gallery figcaption {
  position: absolute;
}
@media (max-width: 760px) {
  .shower-gallery {
    grid-template-columns: 1fr;
  }
  .shower-gallery figure.shower-feature {
    grid-column: auto;
    grid-row: auto;
    min-height: 430px;
  }
  .shower-gallery .shower-feature img {
    min-height: 430px;
  }
}


/* Expanded project galleries */
.expanded-project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.expanded-project-gallery figure {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 14px;
  background: #0d1721;
}
.expanded-project-gallery figure.gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 520px;
}
.expanded-project-gallery img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  display: block;
}
.expanded-project-gallery .gallery-feature img {
  min-height: 520px;
}
.expanded-project-gallery figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(8, 14, 20, .82);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 820px) {
  .expanded-project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .expanded-project-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .expanded-project-gallery figure,
  .expanded-project-gallery figure.gallery-feature {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
  }
  .expanded-project-gallery img,
  .expanded-project-gallery .gallery-feature img {
    min-height: 330px;
  }
}

/* Full logo + tap-to-review photo gallery */
.logo-brand img {
  width: 220px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  border-radius: 4px;
}
.expanded-project-gallery img {
  cursor: zoom-in;
}
.photo-lightbox {
  display:none;
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(0,0,0,.94);
  align-items:center;
  justify-content:center;
  padding:24px 70px;
}
.photo-lightbox.open { display:flex; }
body.lightbox-open { overflow:hidden; }
.lightbox-stage {
  width:min(1100px, 100%);
  height:min(82vh, 850px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.lightbox-image {
  max-width:100%;
  max-height:calc(82vh - 70px);
  object-fit:contain;
  border-radius:8px;
  background:#111;
}
.lightbox-caption, .lightbox-count {
  color:#fff;
  text-align:center;
}
.lightbox-caption { font-weight:700; }
.lightbox-count { opacity:.7; font-size:13px; }
.lightbox-close,.lightbox-prev,.lightbox-next {
  position:fixed;
  z-index:10000;
  border:0;
  color:#fff;
  background:rgba(16,24,32,.78);
  cursor:pointer;
}
.lightbox-close {
  top:16px; right:18px;
  width:48px; height:48px;
  border-radius:50%;
  font-size:34px;
}
.lightbox-prev,.lightbox-next {
  top:50%;
  transform:translateY(-50%);
  width:52px; height:72px;
  border-radius:10px;
  font-size:46px;
}
.lightbox-prev { left:12px; }
.lightbox-next { right:12px; }
@media (max-width: 960px) {
  .logo-brand img { width:190px; height:58px; }
}
@media (max-width: 640px) {
  .logo-brand img { width:170px; height:54px; }
  .photo-lightbox { padding:58px 12px 72px; }
  .lightbox-stage { height:78vh; }
  .lightbox-image { max-height:calc(78vh - 70px); }
  .lightbox-prev,.lightbox-next {
    top:auto; bottom:14px;
    transform:none;
    width:56px; height:48px;
    font-size:36px;
  }
  .lightbox-prev { left:calc(50% - 66px); }
  .lightbox-next { right:calc(50% - 66px); }
}


/* Separate SEO service pages */
.service-page-hero{position:relative;min-height:520px;background:var(--service-page-image) center/cover no-repeat;color:#fff;display:flex;align-items:center}.service-page-overlay{position:absolute;inset:0;background:linear-gradient(95deg,rgba(8,14,20,.94) 0%,rgba(8,14,20,.78) 48%,rgba(8,14,20,.34) 100%)}.service-page-hero-inner{position:relative;z-index:1;padding:90px 0;max-width:820px}.service-page-hero h1{font-size:clamp(52px,7vw,86px);margin-bottom:22px}.service-page-hero-inner>p:not(.eyebrow){font-size:20px;line-height:1.65;max-width:720px;color:rgba(255,255,255,.88)}.service-page-grid{display:grid;grid-template-columns:1.35fr .65fr;gap:70px;align-items:start}.service-page-lead{font-size:18px;color:var(--muted);line-height:1.8}.service-detail-list{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:28px}.service-detail-list div{display:flex;gap:10px;align-items:center;padding:16px 18px;background:#fff;border:1px solid var(--line);border-radius:12px}.service-detail-list span{color:var(--accent-dark);font-weight:900}.service-contact-panel{position:sticky;top:100px;background:var(--ink);color:#fff;padding:28px;border-radius:18px}.service-contact-panel h3{font-size:30px}.service-contact-panel p{color:rgba(255,255,255,.72)}.service-contact-panel .btn{width:100%;margin-top:12px}.service-phone{display:block;color:#fff;text-align:center;font-weight:900;font-size:22px;margin-top:18px;text-decoration:none}.related-services{display:flex;flex-wrap:wrap;gap:10px}.related-service{color:#fff;text-decoration:none;border:1px solid rgba(255,255,255,.2);border-radius:999px;padding:10px 14px;font-weight:700;font-size:13px}.related-service:hover{border-color:var(--accent);color:var(--accent)}.service-page-link{margin-top:16px!important}.photo-service-card .service-page-link{position:relative;z-index:2}.photo-service-card:hover{transform:translateY(-2px);transition:.18s ease}
@media(max-width:900px){.service-page-grid{grid-template-columns:1fr;gap:34px}.service-contact-panel{position:static}.service-detail-list{grid-template-columns:1fr}.service-page-hero{min-height:460px}.service-page-hero-inner{padding:70px 0}}

/* Project preview cards and full project review pages */
.project-preview-section{background:#f7f5ef}.project-preview-card{margin-top:30px;padding:26px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:0 10px 30px rgba(16,24,32,.05)}.project-preview-card.feature-dark{background:var(--ink);color:#fff;border-color:var(--ink)}.project-preview-copy{margin-bottom:18px}.project-preview-copy h3{font-size:38px;margin:10px 0 8px}.project-preview-copy p{margin:0;max-width:760px;color:var(--muted)}.feature-dark .project-preview-copy p{color:rgba(255,255,255,.72)}.project-preview-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin:18px 0 22px}.project-preview-grid img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:10px;display:block}.review-project-btn{min-width:180px}.project-detail-hero{background:var(--ink);color:#fff;padding:54px 0 40px}.project-detail-hero h1{font-size:clamp(44px,7vw,72px);margin:10px 0 14px}.project-detail-hero p{max-width:760px;color:rgba(255,255,255,.76);font-size:18px}.project-detail-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}.project-detail-gallery-section{padding:64px 0}.project-detail-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.project-detail-gallery figure{margin:0;background:#101820;border-radius:12px;overflow:hidden}.project-detail-gallery img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;cursor:zoom-in}.project-detail-gallery figcaption{padding:10px 12px;color:#fff;font-size:12px;font-weight:700}.project-detail-gallery figure:first-child{grid-column:span 2}.project-detail-gallery figure:first-child img{aspect-ratio:16/9}@media(max-width:800px){.project-preview-grid{grid-template-columns:repeat(2,1fr)}.project-detail-gallery{grid-template-columns:repeat(2,1fr)}}@media(max-width:560px){.project-preview-card{padding:16px}.project-preview-grid{grid-template-columns:repeat(2,1fr);gap:6px}.project-preview-copy h3{font-size:32px}.review-project-btn{width:100%}.project-detail-gallery{grid-template-columns:1fr}.project-detail-gallery figure:first-child{grid-column:auto}.project-detail-gallery figure:first-child img,.project-detail-gallery img{aspect-ratio:4/3}}
