﻿/* ====================================================
   S.J. Phoenix  Premium Styles
   Palette: #0a0a0a (black) | #e4002b (crimson) | #fff (white)
   Fonts: Playfair Display (headings) | Inter (body)
==================================================== */

/*  Reset & Base  */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #e4002b;
  --red-dark: #b0001f;
  --red-glow: rgba(228,0,43,.25);
  --black: #f0f0f2;
  --charcoal: #e6e6e8;
  --dark-card: #ffffff;
  --dark-border: rgba(0,0,0,.1);
  --white: #ffffff;
  --off-white: #f5f5f5;
  --muted: #666;
  --text: #1c1c1c;
  --radius: 12px;
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }



/*  Layout  */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/*  Top contact bar  */
.topbar {
  background: var(--charcoal);
  border-bottom: 1px solid var(--dark-border);
}
.topbar-inner {
  max-width: 1160px; margin: 0 auto; padding: .4rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: .85rem;
}
.topbar-item {
  color: var(--muted); text-decoration: none; font-size: .8rem;
  transition: color var(--transition); white-space: nowrap;
}
.topbar-item:hover { color: var(--red); }
.topbar-divider { color: rgba(0,0,0,.2); font-size: .8rem; }

/*  Navbar  */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(240,240,242,.88);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--dark-border);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-wrap.scrolled {
  background: rgba(240,240,242,.99);
  box-shadow: 0 2px 40px rgba(0,0,0,.12);
}
.nav-container {
  max-width: 1160px; margin: 0 auto; padding: 0 1.5rem;
  height: 120px; display: flex; align-items: center; gap: 1.5rem;
  justify-content: space-between;
}
.logo-link { text-decoration: none; display: flex; align-items: center; gap: .85rem; flex: 1; }
.logo-img { height: 88px; width: auto; border-radius: 10px; display: block; }
.logo-bright { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--text); }
.logo-finish { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--red); }
.nav-links { list-style: none; display: flex; gap: .25rem; margin: 0 auto; }
.nav-a {
  text-decoration: none; color: rgba(28,28,28,.65); font-size: .9rem;
  font-weight: 500; padding: .4rem .75rem; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: .02em;
}
.nav-a:hover { color: var(--text); background: rgba(0,0,0,.06); }
.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-phone { color: rgba(28,28,28,.6); text-decoration: none; font-size: .88rem; transition: color var(--transition); white-space: nowrap; }
.nav-phone:hover { color: var(--text); }
.hamburger { display: flex; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: .6rem; flex-shrink: 0; }
.hamburger span { display: block; width: 28px; height: 2.5px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; gap: .5rem; padding: 1rem 1.5rem 1.5rem; border-top: 1px solid var(--dark-border); background: var(--charcoal); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(28,28,28,.75); text-decoration: none; padding: .6rem 0; font-size: .95rem; border-bottom: 1px solid var(--dark-border); }

/*  Buttons  */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.4rem; border-radius: 8px; border: none;
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 600;
  text-decoration: none; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.btn-red {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 20px rgba(228,0,43,.35);
}
.btn-red:hover {
  background: var(--red-dark); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(228,0,43,.55);
}
.btn-red:active { transform: translateY(0); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(0,0,0,.25);
}
.btn-outline:hover {
  border-color: var(--red); color: var(--red);
  background: rgba(228,0,43,.06); transform: translateY(-2px);
}
.btn-dark { background: var(--text); color: var(--white); border: 1.5px solid rgba(0,0,0,.15); }
.btn-dark:hover { background: #333; transform: translateY(-2px); border-color: #555; }
.btn-lg { padding: .9rem 1.8rem; font-size: 1rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }
.btn-arrow { width: 18px; height: 18px; stroke: currentColor; transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/*  Reveal animation  */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/*  Hero  */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 12rem 0 4rem;
}
/* Paint brush-stroke background — single cover, no tiling seams */
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900' preserveAspectRatio='xMidYMid slice'%3E%3Cpath d='M-20 140 C200 80 450 180 720 120 C990 60 1250 160 1620 100' stroke='rgba(228,0,43,0.07)' stroke-width='60' fill='none' stroke-linecap='round'/%3E%3Cpath d='M-20 140 C200 80 450 180 720 120 C990 60 1250 160 1620 100' stroke='rgba(0,0,0,0.025)' stroke-width='20' fill='none' stroke-linecap='round'/%3E%3Cpath d='M-20 370 C180 310 400 400 680 345 C960 290 1200 375 1620 320' stroke='rgba(228,0,43,0.05)' stroke-width='45' fill='none' stroke-linecap='round'/%3E%3Cpath d='M-20 370 C180 310 400 400 680 345 C960 290 1200 375 1620 320' stroke='rgba(0,0,0,0.018)' stroke-width='14' fill='none' stroke-linecap='round'/%3E%3Cpath d='M-20 590 C220 530 500 615 780 560 C1060 505 1300 585 1620 540' stroke='rgba(228,0,43,0.055)' stroke-width='50' fill='none' stroke-linecap='round'/%3E%3Cpath d='M-20 590 C220 530 500 615 780 560 C1060 505 1300 585 1620 540' stroke='rgba(0,0,0,0.02)' stroke-width='16' fill='none' stroke-linecap='round'/%3E%3Cpath d='M-20 790 C250 740 520 810 800 760 C1080 710 1340 780 1620 745' stroke='rgba(228,0,43,0.04)' stroke-width='38' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-glow {
  position: absolute; top: 10%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(228,0,43,.15) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.hero-container { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.hero-label {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red); border: 1px solid rgba(228,0,43,.35);
  padding: .3rem .9rem; border-radius: 999px; margin-bottom: 1.5rem;
  background: rgba(228,0,43,.06);
}
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -.02em; margin-bottom: 1.5rem;
}
.text-red { color: var(--red); }
.hero-sub { color: rgba(28,28,28,.6); font-size: clamp(.95rem, 1.5vw, 1.15rem); margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; justify-content: center; }
.trust-row { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: rgba(28,28,28,.55); }
.trust-icon { font-size: 1rem; }
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(28,28,28,.3); z-index: 1;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/*  Marquee  */
.marquee-wrap { overflow: hidden; background: var(--red); padding: .75rem 0; }
.marquee-track {
  display: flex; gap: 2rem; align-items: center; white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: .85rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
}
.sep { color: rgba(255,255,255,.55); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/*  Sections  */
.section-dark { padding: 6rem 0; background: var(--black); }
.section-light { padding: 6rem 0; background: var(--off-white); color: var(--text); }
.section-red { padding: 6rem 0; background: #c94050; }
.section-contact { padding: 6rem 0; background: var(--charcoal); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red); margin-bottom: .75rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.15;
}
.section-light .section-header h2 { color: var(--text); }
.sub-copy { color: var(--muted); margin-top: .75rem; font-size: .95rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/*  Services Grid  */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.card-wide { grid-column: 1 / -1; }
.service-card {
  position: relative; background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  text-decoration: none; color: var(--text); overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; gap: .5rem;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(228,0,43,.08), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { border-color: rgba(228,0,43,.5); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.service-card:hover::before { opacity: 1; }
.service-num { font-size: .75rem; font-weight: 700; color: var(--red); letter-spacing: .08em; }
.service-icon { font-size: 2rem; margin: .25rem 0; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; }
.service-card p { font-size: .9rem; color: #777; flex: 1; }
.service-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15);
  font-size: 1rem; color: var(--text); border: 1px solid rgba(0,0,0,.15); transition: background var(--transition), border-color var(--transition), transform var(--transition);
  align-self: flex-start; margin-top: .5rem;
}
.service-card:hover .service-arrow { background: var(--red); border-color: var(--red); transform: translateX(4px); }

/*  Why  */
.why-wrap { display: grid; grid-template-columns: 1fr minmax(0, 380px); gap: 3rem; align-items: center; }
.why-copy .eyebrow { color: var(--red); }
.why-copy h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--text); margin-bottom: 1.5rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.why-item { display: flex; gap: .75rem; align-items: flex-start; }
.why-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  margin-top: .5rem; flex-shrink: 0;
}
.why-item strong { color: var(--text); }
.why-item div { color: #555; font-size: .95rem; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; min-width: 0; }
.stat-card {
  background: var(--white); border-radius: var(--radius); padding: 1.1rem 1.25rem;
  display: flex; flex-direction: column; gap: .2rem;
  border: 1px solid #e6e6e6; min-width: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.stat-num { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--red); line-height: 1; }
.stat-label { font-size: .78rem; color: var(--muted); font-weight: 500; line-height: 1.35; }

/*  Projects  */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.project-card:hover { border-color: rgba(228,0,43,.4); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.project-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.project-info { padding: 1.25rem; }
.project-info h4 { font-family: 'Playfair Display', serif; margin-bottom: .4rem; font-size: 1.05rem; }
.project-info p { font-size: .88rem; color: #777; margin-bottom: .75rem; }
.tag-pill {
  display: inline-block; font-size: .75rem; font-weight: 600; padding: .2rem .65rem;
  border-radius: 999px; background: rgba(228,0,43,.15); color: var(--red);
  border: 1px solid rgba(228,0,43,.3); letter-spacing: .04em;
}

/*  Before/After  */
.before-after {
  position: relative; overflow: hidden; cursor: col-resize;
  aspect-ratio: 4/3; background: #ccc; user-select: none;
}
.ba-before { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-after-wrap {
  position: absolute; left: 0; top: 0; height: 100%;
  overflow: hidden; width: 50%;
}
.ba-after { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 3px; background: var(--red); pointer-events: none;
  box-shadow: 0 0 12px var(--red-glow);
  display: flex; align-items: center; justify-content: center;
}
.ba-circle {
  width: 36px; height: 36px; border-radius: 50%; background: var(--red);
  border: 2.5px solid var(--white); box-shadow: 0 0 16px rgba(228,0,43,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--white); font-weight: 700;
  transition: transform var(--transition);
}
.before-after:hover .ba-circle { transform: scale(1.15); }
.ba-range {
  position: absolute; inset: 0; opacity: 0; cursor: col-resize;
  width: 100%; height: 100%; margin: 0; appearance: none;
}
.ba-labels {
  position: absolute; bottom: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.7); pointer-events: none;
}

/*  Reviews  */
.reviews-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 2.5rem; }
.review-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: background var(--transition), transform var(--transition);
}
.review-card:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }
.stars { color: #ffb800; font-size: 1rem; margin-bottom: .75rem; letter-spacing: .05em; }
.review-card p { color: rgba(255,255,255,.9); font-size: .9rem; line-height: 1.6; margin-bottom: .75rem; }
.review-card cite { font-size: .8rem; font-style: normal; color: rgba(255,255,255,.55); font-weight: 600; }
.reviews-cta { text-align: center; }

/*  Process  */
.section-light .eyebrow { color: var(--red); }
.section-light h2 { color: var(--text); }
.process-steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; text-align: center; padding: 2rem 1.5rem; position: relative; }
.step-num {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700;
  color: var(--red); opacity: .18; line-height: 1; margin-bottom: .5rem;
}
.step h4 { font-size: 1.05rem; color: var(--text); margin-bottom: .4rem; font-weight: 600; }
.step p { font-size: .9rem; color: #666; }
.step-connector {
  width: 60px; height: 2px; flex-shrink: 0; margin-top: 2.5rem;
  background: linear-gradient(to right, var(--red), rgba(228,0,43,.2));
}

/*  Pricing  */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.pricing-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.pricing-card:hover { border-color: rgba(228,0,43,.4); transform: translateY(-4px); }
.pricing-featured {
  border-color: rgba(228,0,43,.5) !important;
  background: linear-gradient(135deg, #fff0f2, #ffffff);
  box-shadow: 0 0 40px rgba(228,0,43,.12);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white); font-size: .72rem; font-weight: 700;
  padding: .2rem .8rem; border-radius: 999px; letter-spacing: .06em;
  text-transform: uppercase; white-space: nowrap;
}
.pricing-tier { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text); }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.pricing-card li { font-size: .9rem; color: #666; padding-left: 1.2rem; position: relative; }
.pricing-card li::before { content: ''; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/*  Commercial  */
.commercial-wrap {
  display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: center;
}
.commercial-copy .eyebrow { color: var(--red); }
.commercial-copy h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.8rem); color: var(--text); margin-bottom: 1rem; }
.commercial-copy p { color: #555; margin-bottom: 1.5rem; }
.commercial-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.com-feat {
  background: var(--white); border: 1px solid #e8e8e8; border-radius: 10px;
  padding: 1rem 1.25rem; font-weight: 600; font-size: .9rem; color: var(--text);
  display: flex; align-items: center; gap: .6rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.com-feat:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.com-feat span { color: var(--red); font-size: 1.1rem; }

/*  Accordion  */
.accordion { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.acc-item { border: 1px solid var(--dark-border); border-radius: 10px; overflow: hidden; }
.acc-toggle {
  width: 100%; background: var(--dark-card); border: none; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 500;
  padding: 1.2rem 1.5rem; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background var(--transition), color var(--transition);
  gap: 1rem;
}
.acc-toggle:hover { background: #f0f0f0; color: var(--red); }
.acc-toggle.open { background: rgba(228,0,43,.07); color: var(--red); border-bottom: 1px solid var(--dark-border); }
.acc-icon { font-size: 1.3rem; font-weight: 300; flex-shrink: 0; transition: transform var(--transition); }
.acc-toggle.open .acc-icon { transform: rotate(45deg); }
.acc-panel { display: none; padding: 1.25rem 1.5rem; background: #fafafa; }
.acc-panel p { color: #555; font-size: .95rem; line-height: 1.7; }

/*  Contact Form  */
.contact-wrap {
  display: grid; grid-template-columns: 420px 1fr; gap: 5rem; align-items: start;
}
.contact-copy { padding-top: 1rem; }
.contact-copy h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.8rem); margin-bottom: 1rem; }
.contact-copy p { margin-bottom: 1.75rem; }
.contact-details { display: flex; flex-direction: column; gap: .75rem; }
.contact-detail {
  color: rgba(28,28,28,.65); text-decoration: none; font-size: .95rem;
  display: flex; align-items: center; gap: .5rem;
  transition: color var(--transition);
}
.contact-detail:hover { color: var(--red); }
.quote-form {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: 16px; padding: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: #666; letter-spacing: .04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  background: #f9f9f9; border: 1px solid rgba(0,0,0,.13);
  border-radius: 8px; padding: .75rem 1rem; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: .95rem; width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(228,0,43,.15);
}
.form-group select option { background: #ffffff; color: var(--text); }
.file-label {
  display: flex; align-items: center; gap: .75rem; cursor: pointer;
  background: #f5f5f5; border: 1.5px dashed rgba(0,0,0,.18);
  border-radius: 8px; padding: .9rem 1rem;
  font-size: .9rem; color: #888; font-weight: normal !important;
  text-transform: none !important; letter-spacing: 0 !important;
  transition: border-color var(--transition), background var(--transition);
}
.file-label:hover { border-color: var(--red); background: rgba(228,0,43,.04); color: #555; }
.file-label input { display: none; }
.photo-list { font-size: .8rem; color: #999; min-height: 18px; }
.photo-note {
  font-size: .82rem; color: var(--muted);
  background: rgba(0,0,0,.04); border-radius: 8px;
  padding: .7rem 1rem; border-left: 3px solid var(--red);
  line-height: 1.55;
}
.photo-note a { color: var(--red); text-decoration: none; }
.photo-note a:hover { text-decoration: underline; }

/*  Social Links  */
.social-links { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .75rem; }
.social-link-google:hover { color: #4285F4; }
.social-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--muted); text-decoration: none; font-size: .82rem;
  transition: color var(--transition);
}
.social-link:hover { color: #e4405f; }
.nav-insta {
  display: inline-flex; align-items: center;
  color: rgba(28,28,28,.5); text-decoration: none;
  transition: color var(--transition);
}
.nav-insta:hover { color: #e4405f; }
.nav-google {
  display: inline-flex; align-items: center;
  text-decoration: none; opacity: .75;
  transition: opacity var(--transition);
}
.nav-google:hover { opacity: 1; }

/*  Footer  */
.site-footer { background: #e0e0e2; border-top: 1px solid var(--dark-border); padding: 3rem 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; }
.footer-brand p { font-size: .82rem; color: var(--muted); margin-top: .3rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; }
.footer-links a { color: rgba(28,28,28,.5); text-decoration: none; font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--red); }
.footer-right { text-align: right; }
.footer-right p { font-size: .82rem; color: var(--muted); line-height: 1.7; }

/*  Sticky CTA  */
.sticky-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 80;
  background: var(--red); color: var(--white);
  font-weight: 700; font-size: .88rem; text-decoration: none;
  padding: .75rem 1.4rem; border-radius: 999px;
  box-shadow: 0 6px 28px rgba(228,0,43,.5);
  transform: translateY(80px); opacity: 0;
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s, box-shadow var(--transition);
  display: none;
}
.sticky-cta.visible { transform: translateY(0); opacity: 1; }
.sticky-cta:hover { box-shadow: 0 10px 40px rgba(228,0,43,.7); transform: translateY(-2px); }

/*  Responsive  */
@media (max-width: 1060px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .card-wide { grid-column: span 2; }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .why-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .commercial-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-right { text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 720px) {
  /* Topbar — compact on mobile */
  .topbar-inner { padding: .3rem .75rem; gap: .5rem; flex-wrap: wrap; justify-content: center; }
  .topbar-item { font-size: .72rem; }
  .topbar-divider { font-size: .72rem; }

  /* Navbar — compact on mobile */
  .nav-container { height: 56px; gap: .5rem; padding: 0 .75rem; }
  .logo-img { height: 34px; border-radius: 4px; }
  .logo-bright, .logo-finish { font-size: .95rem; }
  .logo-link { flex: 1; }
  .nav-phone { display: none; }
  .nav-right { gap: .5rem; flex-shrink: 0; }
  .nav-right .btn { display: none; }
  .nav-insta svg { width: 18px; height: 18px; }
  .nav-google svg { width: 18px; height: 18px; }
  .hamburger span { width: 20px; }
  .hamburger { gap: 4px; padding: .3rem; flex-shrink: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .card-wide { grid-column: span 1; }
  .projects-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .stat-card { padding: .9rem 1rem; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: .72rem; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--red), rgba(228,0,43,.2)); }
  .pricing-grid { grid-template-columns: 1fr; }
  .commercial-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  .detail-wrap { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; }
}

/* ── Service Detail Pages ── */
.service-detail-hero {
  padding: 9rem 0 5rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.service-detail-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(228,0,43,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228,0,43,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.service-detail-hero .wrap { position: relative; z-index: 1; }
.back-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: rgba(28,28,28,.5); text-decoration: none; font-size: .88rem;
  margin-bottom: 1.5rem; transition: color var(--transition);
}
.back-link:hover { color: var(--red); }
.detail-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }
.detail-col h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 1rem; color: var(--text); }
.detail-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.detail-list li {
  color: #555; font-size: .95rem; padding-left: 1.5rem;
  position: relative; line-height: 1.6;
}
.detail-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.detail-cta-card {
  background: var(--dark-card); border: 1px solid rgba(228,0,43,.25);
  border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: sticky; top: 90px;
  box-shadow: 0 0 40px rgba(228,0,43,.08);
}
.detail-cta-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text); }
.detail-cta-card p { color: #666; font-size: .9rem; }
