
: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; }
}


/* Custom shower full gallery */
.gallery-hint {
  font-size: 13px;
  color: rgba(255,255,255,.64) !important;
  margin-top: 8px;
}
.shower-feature {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: #0b1117;
  cursor: pointer;
  overflow: hidden;
}
.shower-feature img {
  width: 100%;
  height: min(72vh, 760px);
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.shower-feature span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(16,24,32,.92);
  color: white;
  padding: 11px 15px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.18);
}
.shower-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  background: #111;
}
.gallery-thumb {
  border: 0;
  padding: 0;
  background: #111;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}
.gallery-thumb:hover img { transform: scale(1.03); opacity: .88; }

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.94);
  padding: 20px;
}
.project-lightbox.open { display: flex; }
.lightbox-stage {
  width: min(1100px, 88vw);
  height: min(86vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.7);
  color: white;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.12);
  color: white;
  cursor: pointer;
  z-index: 2;
}
.lightbox-close {
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 32px;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 72px;
  border-radius: 10px;
  font-size: 48px;
}
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

@media (max-width: 900px) {
  .shower-gallery-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 640px) {
  .shower-feature img { min-height: 420px; height: 68vh; }
  .shower-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .lightbox-prev, .lightbox-next {
    width: 44px;
    height: 58px;
    font-size: 38px;
  }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}
