
:root {
  --bg: #0b0b0c;
  --panel: #121315;
  --panel-2: #17191d;
  --text: #f5f5f5;
  --muted: #b6b7bb;
  --gold: #d8ad48;
  --gold-soft: rgba(216,173,72,0.18);
  --border: rgba(255,255,255,0.08);
  --max: 1200px;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0,0,0,0.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #0b0b0c 0%, #0f1114 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(11,11,12,0.82);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 0;
}
.brand { display:flex; align-items:center; gap:14px; }
.brand img { width: 62px; height: 62px; object-fit: cover; border-radius: 999px; box-shadow: var(--shadow); }
.brand-title { font-size: 1.1rem; font-weight: 800; letter-spacing: 0.02em; }
.brand-subtitle { color: var(--gold); font-size: 0.82rem; }
.nav { display:flex; gap:24px; flex-wrap:wrap; justify-content:flex-end; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover, .nav a.active { color: white; }
.hero {
  padding: 72px 0 42px;
}
.hero-grid {
  display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: center;
}
.kicker {
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--gold-soft); background: rgba(216,173,72,0.09);
  color: #f8deb0; border-radius: 999px; padding: 8px 14px; font-size: 0.9rem; margin-bottom: 18px;
}
.kicker:before { content:''; width:8px; height:8px; background: var(--gold); border-radius:999px; }
.hero h1 { font-size: clamp(2.3rem, 6vw, 4.6rem); line-height: 1.04; margin: 0 0 16px; }
.hero p { color: var(--muted); font-size: 1.05rem; max-width: 60ch; }
.cta-row { display:flex; gap:16px; flex-wrap:wrap; margin-top: 28px; }
.button {
  display:inline-flex; align-items:center; justify-content:center;
  min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 800;
  border: 1px solid var(--border); transition: .25s ease; cursor:pointer;
}
.button.primary { background: linear-gradient(135deg, #e6c164, #b88924); color: #111; }
.button.secondary { background: transparent; color: white; }
.button:hover { transform: translateY(-1px); }
.hero-card, .card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-card { overflow:hidden; }
.hero-card img { width:100%; height: 100%; min-height: 420px; object-fit: cover; }
.section { padding: 44px 0; }
.section-header { margin-bottom: 24px; }
.section-header h2 { margin:0 0 10px; font-size: clamp(1.8rem, 4vw, 3rem); }
.section-header p { margin:0; color: var(--muted); max-width: 70ch; }
.stats {
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.stat { padding: 22px; }
.stat strong { display:block; font-size: 1.9rem; color: var(--gold); }
.stat span { color: var(--muted); }
.service-grid, .gallery-grid, .value-grid, .contact-grid, .two-col {
  display:grid; gap: 20px;
}
.service-grid { grid-template-columns: repeat(3, 1fr); }
.value-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.contact-grid { grid-template-columns: 0.95fr 1.05fr; align-items:start; }
.two-col { grid-template-columns: 1fr 1fr; align-items: center; }
.card-pad { padding: 24px; }
.service-card h3, .value-card h3, .mini-project h3 { margin: 0 0 12px; font-size: 1.2rem; }
.service-card p, .value-card p, .mini-project p, .contact-box p, .list li { color: var(--muted); }
.service-list { margin: 14px 0 0; padding-left: 18px; color: var(--muted); }
.project-card { overflow:hidden; }
.project-card img { aspect-ratio: 4/3; width:100%; object-fit: cover; }
.project-card .card-pad { padding-top: 18px; }
.tag {
  display:inline-block; font-size: .8rem; font-weight:700; letter-spacing:.03em; text-transform:uppercase;
  color:#f3d18a; background:rgba(216,173,72,.12); border:1px solid var(--gold-soft); padding: 6px 10px; border-radius: 999px;
}
.quote-strip {
  margin-top: 10px; padding: 28px; border-left: 3px solid var(--gold);
}
.list { padding-left: 18px; }
.list li { margin-bottom: 10px; }
.footer {
  padding: 34px 0 50px; border-top: 1px solid var(--border); margin-top: 28px;
}
.footer-grid { display:grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 20px; }
.footer p, .footer a { color: var(--muted); }
.footer h4 { margin: 0 0 14px; }
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.form-grid .full { grid-column: 1 / -1; }
.field {
  background: rgba(255,255,255,.03); border:1px solid var(--border); color: white;
  border-radius: 14px; padding: 14px 16px; min-height: 50px;
}
textarea.field { min-height: 130px; resize: vertical; }
.notice { color: var(--muted); font-size: .92rem; }
.page-hero { padding: 56px 0 20px; }
.page-hero h1 { margin: 0 0 12px; font-size: clamp(2rem, 5vw, 3.7rem); }
.breadcrumbs { color: var(--muted); margin-bottom: 12px; }
.category-block { margin-top: 28px; }
.category-block h3 { margin: 0 0 14px; font-size: 1.5rem; }
.masonry { column-count: 3; column-gap: 18px; }
.masonry .project-card { break-inside: avoid; margin-bottom: 18px; }
.small-muted { color: var(--muted); font-size: .95rem; }
@media (max-width: 980px) {
  .hero-grid, .contact-grid, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .service-grid, .gallery-grid, .value-grid, .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-card img { min-height: 340px; }
}
@media (max-width: 640px) {
  .nav { gap: 14px; font-size: .95rem; }
  .service-grid, .gallery-grid, .value-grid, .stats, .form-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }
  .brand img { width: 54px; height: 54px; }
  .header-inner { align-items:flex-start; }
}

/* Epoxy conversion page additions */
.epoxy-hero { background: radial-gradient(circle at 80% 10%, rgba(216,173,72,.16), transparent 34%), linear-gradient(180deg, #0b0b0c 0%, #111318 100%); }
.epoxy-main-photo img { min-height: 520px; object-fit: cover; }
.trust-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; color:#f8deb0; font-weight:700; font-size:.92rem; }
.trust-row span { border:1px solid var(--gold-soft); background:rgba(216,173,72,.08); border-radius:999px; padding:8px 12px; }
.conversion-bar .stat strong { font-size:1.55rem; }
.epoxy-services .project-card img, .final-gallery .project-card img { height: 280px; aspect-ratio: auto; object-fit: cover; transition: transform .35s ease; }
.final-gallery .project-card:hover img, .epoxy-services .project-card:hover img { transform: scale(1.04); }
.text-link { color: var(--gold); font-weight: 900; display:inline-block; margin-top:10px; }
.gallery-luxury { background: linear-gradient(180deg, rgba(216,173,72,.04), transparent); }
.final-gallery .project-card .card-pad { padding:16px 18px; }
.final-gallery .project-card h3 { margin:8px 0 0; }
.contact-form .button { margin-top:18px; border:0; }
select.field { appearance:none; }
.sticky-quote { position: fixed; right: 18px; bottom: 18px; z-index: 50; background: linear-gradient(135deg, #e6c164, #b88924); color:#111; padding:14px 18px; border-radius:999px; font-weight:900; box-shadow:0 18px 44px rgba(0,0,0,.4); }
@media (max-width:640px){ .epoxy-main-photo img { min-height: 320px; } .epoxy-services .project-card img, .final-gallery .project-card img { height: 240px; } .sticky-quote { left:16px; right:16px; text-align:center; } }


/* Final Boss conversion upgrade */
.center { text-align:center; margin-left:auto; margin-right:auto; }
.center p { margin-left:auto; margin-right:auto; }
.conversion-upgrade { background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(216,173,72,.035)); }
.conversion-values .card { border-top: 2px solid var(--gold); }
.process-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; }
.process-step { position:relative; padding:24px; border-radius:var(--radius); border:1px solid var(--border); background:rgba(255,255,255,.03); }
.process-step span { display:inline-flex; width:42px; height:42px; align-items:center; justify-content:center; border-radius:999px; background:rgba(216,173,72,.16); color:var(--gold); font-weight:900; margin-bottom:14px; }
.process-step h3 { margin:0 0 8px; }
.process-step p { margin:0; color:var(--muted); }
.service-areas { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.service-areas span { border:1px solid var(--gold-soft); background:rgba(216,173,72,.08); color:#f8deb0; border-radius:999px; padding:10px 16px; font-weight:800; }
.reviews-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.review-card p { color:var(--muted); font-size:1.02rem; }
.stars { color:var(--gold); font-size:1.2rem; letter-spacing:2px; margin-bottom:12px; }
.quote-section { background: radial-gradient(circle at 15% 0%, rgba(216,173,72,.16), transparent 28%), linear-gradient(180deg, #101114, #070708); border-top:1px solid var(--border); }
.quote-grid { display:grid; grid-template-columns: .85fr 1.15fr; gap:28px; align-items:start; }
.quote-grid h2 { font-size: clamp(2rem, 4vw, 3.3rem); margin:0 0 14px; }
.quote-grid p { color:var(--muted); }
.quote-checks { list-style:none; padding:0; margin:22px 0 0; display:grid; gap:10px; }
.quote-checks li { color:#f8deb0; font-weight:800; }
.quote-checks li:before { content:'✓'; color:var(--gold); margin-right:9px; }
.hidden { display:none; }
.sticky-actions { position:fixed; left:50%; transform:translateX(-50%); bottom:18px; z-index:60; display:flex; gap:10px; padding:8px; border:1px solid var(--border); background:rgba(10,10,11,.88); backdrop-filter:blur(12px); border-radius:999px; box-shadow:0 18px 44px rgba(0,0,0,.45); }
.sticky-actions a { display:inline-flex; align-items:center; justify-content:center; min-width:130px; min-height:46px; padding:0 18px; border-radius:999px; font-weight:900; }
.sticky-actions a:first-child { color:#111; background:linear-gradient(135deg, #e6c164, #b88924); }
.sticky-actions a:last-child { color:white; border:1px solid var(--border); }
@media (max-width: 980px) { .process-grid, .reviews-grid, .quote-grid { grid-template-columns:1fr 1fr; } }
@media (max-width: 640px) { .process-grid, .reviews-grid, .quote-grid { grid-template-columns:1fr; } .sticky-actions { left:12px; right:12px; transform:none; } .sticky-actions a { min-width:0; flex:1; } body { padding-bottom:74px; } }
