/* ============================================
   Railings & Glass — Master Stylesheet
   Palette A: Modern Black + Bronze
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #1a1a1a;
  --black-2a: #2a2a2a;
  --black-555: #555555;
  --gray-666: #666666;
  --gray-c9: #c9c9c9;
  --cream: #f5f4ef;
  --cream-line: #e5e3dc;
  --white: #ffffff;
  --bronze: #b8945c;
  --bronze-dark: #9a7a47;
  --max-w: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ NAV ============ */
.nav {
  background: var(--black);
  color: var(--white);
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #222;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 17px;
}
.nav-logo-mark {
  width: 24px; height: 24px;
  background: var(--bronze);
  border-radius: 4px;
}
.nav-menu {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--gray-c9);
  list-style: none;
}
.nav-menu a:hover { color: var(--bronze); }
.nav-cta {
  background: var(--bronze);
  color: var(--black);
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .15s;
}
.nav-cta:hover { background: var(--bronze-dark); color: var(--white); }
.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid #444;
  color: var(--white);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

/* ============ TRUST STRIP ============ */
.trust {
  background: var(--cream);
  padding: 12px 32px;
  border-bottom: 1px solid var(--cream-line);
  font-size: 13px;
  color: var(--black-555);
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item .star { color: var(--bronze); margin-right: 6px; font-weight: 500; }

/* ============ HERO ============ */
.hero {
  background: var(--black-soft);
  color: var(--white);
  padding: 80px 32px;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-tag {
  font-size: 12px;
  color: var(--bronze);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-weight: 500;
}
.hero h1 {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 17px;
  color: var(--gray-c9);
  line-height: 1.55;
  margin-bottom: 30px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--bronze);
  color: var(--black);
  padding: 14px 24px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: background .15s, transform .1s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--bronze-dark); color: var(--white); }
.btn-primary:active { transform: scale(0.98); }
.btn-secondary {
  border: 1px solid #555;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 5px;
  font-size: 14px;
  display: inline-block;
  transition: border-color .15s;
  cursor: pointer;
  background: transparent;
}
.btn-secondary:hover { border-color: var(--bronze); color: var(--bronze); }
.hero-photo {
  background: #2a2a2a;
  border-radius: 8px;
  height: 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-tag {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(184,148,92,0.95); color: var(--black);
  padding: 6px 12px; border-radius: 4px;
  font-size: 12px; font-weight: 500;
}

/* Placeholder hero illustration when no image yet */
.hero-photo-illus {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}
.hero-photo-illus::before {
  content: '';
  position: absolute;
  top: 25%; bottom: 25%; left: 0; right: 0;
  background: repeating-linear-gradient(90deg,
    var(--bronze) 0px, var(--bronze) 2px,
    transparent 2px, transparent 16px);
  opacity: 0.7;
}
.hero-photo-illus::after {
  content: '';
  position: absolute;
  top: 25%; left: 0; right: 0;
  height: 4px; background: var(--bronze);
  box-shadow: 0 220px 0 var(--bronze);
}

/* ============ HOW IT WORKS ============ */
.how {
  background: var(--cream);
  padding: 56px 32px;
  border-bottom: 1px solid var(--cream-line);
}
.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-step {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: 8px;
  padding: 28px;
  position: relative;
}
.how-num {
  width: 32px; height: 32px;
  background: var(--bronze);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 16px;
}
.how-step h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
}
.how-step p {
  font-size: 14px;
  color: var(--gray-666);
}

/* ============ SECTION ============ */
.section {
  padding: 72px 32px;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: 15px;
  color: var(--gray-666);
  margin-bottom: 32px;
}

/* ============ PRODUCT GRID ============ */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--cream);
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--cream-line);
  transition: border-color .15s, transform .15s;
}
.product-card:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
}
.product-card-img {
  height: 110px;
  border-radius: 6px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.product-card-img.alum { background: repeating-linear-gradient(90deg, var(--black) 0px, var(--black) 3px, var(--white) 3px, var(--white) 12px); }
.product-card-img.framed { background: linear-gradient(180deg, var(--black) 0%, var(--black) 10%, #d4d6d4 10%, #d4d6d4 90%, var(--black) 90%, var(--black) 100%); }
.product-card-img.frameless { background: linear-gradient(180deg, rgba(220,225,230,0.7) 0%, rgba(220,225,230,0.4) 100%); border: 1px solid #b0b6bc; }
.product-card-img.pool { background: var(--bronze); }
.product-card-img.fence { background: linear-gradient(180deg, var(--black) 0%, var(--black) 100%); position: relative; }
.product-card-img.fence::after { content: ''; position: absolute; top: 20%; bottom: 20%; left: 10%; right: 10%; background: repeating-linear-gradient(90deg, transparent 0px, transparent 6px, var(--cream) 6px, var(--cream) 8px); }
.product-card-img.column { background: var(--cream); position: relative; }
.product-card-img.column::after { content: ''; position: absolute; top: 0; bottom: 0; left: 35%; right: 35%; background: var(--black); }
.product-card h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}
.product-card p {
  font-size: 13px;
  color: var(--gray-666);
  margin-bottom: 12px;
}
.product-card-link {
  font-size: 13px;
  color: var(--black);
  font-weight: 500;
}
.product-card-link:hover { color: var(--bronze); }

/* ============ COMPARISON TABLE ============ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--cream-line);
}
.compare-table thead th {
  background: var(--black);
  color: var(--white);
  font-weight: 500;
  font-size: 13px;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: var(--cream); }
.compare-table td:first-child { font-weight: 500; }

/* ============ GALLERY ============ */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.gallery-filter {
  padding: 8px 14px;
  border: 1px solid var(--cream-line);
  border-radius: 5px;
  background: var(--white);
  font-size: 13px;
  cursor: pointer;
  transition: all .15s;
}
.gallery-filter.active, .gallery-filter:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  transition: transform .15s;
}
.gallery-item:hover { transform: translateY(-2px); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
  padding: 24px 14px 12px;
  font-size: 12px;
}
.gallery-item-caption strong {
  color: var(--bronze);
  font-weight: 500;
}

/* ============ REVIEWS ============ */
.reviews {
  background: var(--cream);
  padding: 56px 32px;
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
}
.reviews-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: 8px;
  padding: 24px;
}
.review-stars {
  color: var(--bronze);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--black-555);
  margin-bottom: 16px;
}
.review-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}
.review-author-city {
  font-size: 12px;
  color: var(--gray-666);
  font-weight: 400;
}

/* ============ QUOTE FORM ============ */
.quote-form-section {
  background: var(--black);
  color: var(--white);
  padding: 72px 32px;
}
.quote-form-inner {
  max-width: 720px;
  margin: 0 auto;
}
.quote-form-section h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.quote-form-section .subtitle {
  font-size: 16px;
  color: var(--gray-c9);
  margin-bottom: 36px;
}
.quote-form {
  background: var(--black-soft);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 13px;
  color: var(--gray-c9);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--black);
  border: 1px solid #333;
  border-radius: 5px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--bronze);
}
.form-field textarea { min-height: 90px; resize: vertical; }
.form-field-photos {
  border: 2px dashed #333;
  border-radius: 6px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  background: var(--black);
}
.form-field-photos:hover { border-color: var(--bronze); background: #0f0f0f; }
.form-field-photos.dragging { border-color: var(--bronze); background: #1a1208; }
.form-field-photos input[type=file] { display: none; }
.form-field-photos-icon {
  font-size: 28px;
  color: var(--bronze);
  margin-bottom: 8px;
}
.form-field-photos-text {
  font-size: 14px;
  color: var(--gray-c9);
  margin-bottom: 4px;
}
.form-field-photos-hint {
  font-size: 12px;
  color: var(--gray-666);
}
.photos-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.photo-preview-item {
  position: relative;
  aspect-ratio: 1;
  background: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
}
.photo-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview-remove {
  position: absolute;
  top: 4px; right: 4px;
  width: 20px; height: 20px;
  background: rgba(0,0,0,0.8);
  color: var(--white);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--bronze);
  color: var(--black);
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s;
}
.form-submit:hover:not(:disabled) { background: var(--bronze-dark); color: var(--white); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status {
  padding: 12px 16px;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 16px;
  display: none;
}
.form-status.success { background: #133a23; color: #4ade80; display: block; }
.form-status.error { background: #3a1313; color: #f87171; display: block; }

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  color: var(--gray-c9);
  padding: 48px 32px 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 12px; font-size: 17px; }
.footer-brand p { font-size: 13px; line-height: 1.6; color: var(--gray-c9); }
.footer h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; font-size: 13px; }
.footer ul a:hover { color: var(--bronze); }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-666);
}

/* ============ HERO BAND (interior pages) ============ */
.page-hero {
  background: var(--black-soft);
  color: var(--white);
  padding: 72px 32px 56px;
  border-bottom: 1px solid #2a2a2a;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero-tag {
  font-size: 12px;
  color: var(--bronze);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 500;
}
.page-hero h1 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  max-width: 720px;
}
.page-hero p {
  font-size: 17px;
  color: var(--gray-c9);
  max-width: 720px;
  line-height: 1.55;
}

/* Two-column content */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.prose h2 {
  font-size: 24px;
  font-weight: 500;
  margin: 32px 0 12px;
  letter-spacing: -0.01em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 24px 0 8px;
}
.prose p { margin-bottom: 14px; line-height: 1.7; color: var(--black-555); font-size: 15px; }
.prose ul { margin: 12px 0 16px 20px; }
.prose li { margin-bottom: 6px; line-height: 1.6; color: var(--black-555); font-size: 15px; }
.prose strong { color: var(--black); font-weight: 500; }

.sidebar {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 100px;
}
.sidebar h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
.sidebar p {
  font-size: 14px;
  color: var(--gray-666);
  margin-bottom: 16px;
}
.sidebar .btn-primary { width: 100%; text-align: center; }
.sidebar .price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-line);
  font-size: 14px;
}
.sidebar .price-row:last-child { border-bottom: none; }
.sidebar .price-row strong { font-weight: 500; }

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid var(--cream-line);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: var(--bronze);
  font-weight: 400;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--bronze); }
.faq-item p {
  margin-top: 10px;
  color: var(--black-555);
  font-size: 15px;
  line-height: 1.65;
}

/* ============ MOBILE ============ */
@media (max-width: 900px) {
  .nav { padding: 12px 18px; }
  .nav-menu { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--black);
    padding: 18px;
    gap: 16px;
    border-bottom: 1px solid #222;
  }
  .trust { padding: 10px 18px; }
  .trust-inner { gap: 16px; font-size: 12px; }
  .hero { padding: 48px 18px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 32px; }
  .hero-photo { height: 240px; }
  .how { padding: 36px 18px; }
  .how-inner { grid-template-columns: 1fr; gap: 14px; }
  .section { padding: 48px 18px; }
  .section-title { font-size: 24px; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews { padding: 36px 18px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 18px 36px; }
  .page-hero h1 { font-size: 28px; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .sidebar { position: relative; top: auto; }
  .quote-form-section { padding: 48px 18px; }
  .quote-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .footer { padding: 36px 18px 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}
@media (max-width: 500px) {
  .products { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ PROGRESSIVE DISCLOSURE ============ */
/* Used on service pages: clean human view + click-to-reveal depth */

/* "60-second pitch" cards under hero */
.pitch-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}
.pitch-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: left;
  transition: border-color .15s, transform .15s;
}
.pitch-card:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
}
.pitch-card-icon {
  width: 36px; height: 36px;
  background: var(--cream);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--bronze);
  margin-bottom: 16px;
}
.pitch-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}
.pitch-card p {
  font-size: 14px;
  color: var(--gray-666);
  line-height: 1.55;
  margin: 0;
}

/* Photo gallery row — visible proof */
.photo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.photo-row-item {
  aspect-ratio: 1;
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--cream-line);
}
.photo-row-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-row-item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
  padding: 18px 10px 8px;
  font-size: 11px;
  letter-spacing: 0.02em;
}

/* Single review block — quieter than 3-up grid */
.single-review {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 32px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--cream-line);
}
.single-review-stars {
  color: var(--bronze);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.single-review-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 14px;
  font-style: italic;
}
.single-review-author {
  font-size: 13px;
  color: var(--gray-666);
}
.single-review-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  color: var(--black);
  font-weight: 500;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 1px;
}

/* Tell-me-more expandable section */
.deep-dive {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: 8px;
  margin-top: 20px;
  overflow: hidden;
}
.deep-dive-toggle {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: inherit;
}
.deep-dive-toggle::after {
  content: '+';
  font-size: 22px;
  color: var(--bronze);
  font-weight: 400;
  line-height: 1;
}
.deep-dive[open] .deep-dive-toggle::after { content: '−'; }
.deep-dive-toggle:hover { background: rgba(184,148,92,0.05); }
.deep-dive-body {
  padding: 0 26px 26px;
  border-top: 1px solid var(--cream-line);
  padding-top: 22px;
}

/* Hidden but indexable SEO summary block */
.seo-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Compact geo strip */
.geo-strip {
  background: var(--black);
  color: var(--gray-c9);
  padding: 22px 32px;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
}
.geo-strip strong {
  color: var(--bronze);
  font-weight: 500;
}
.geo-strip a {
  color: var(--gray-c9);
  border-bottom: 1px dotted #444;
}
.geo-strip a:hover { color: var(--bronze); }

/* Mobile */
@media (max-width: 900px) {
  .pitch-cards { grid-template-columns: 1fr; gap: 12px; }
  .photo-row { grid-template-columns: repeat(2, 1fr); }
  .single-review { padding: 28px 22px; }
  .single-review-text { font-size: 15px; }
  .deep-dive-toggle { padding: 18px 20px; font-size: 15px; }
  .deep-dive-body { padding: 18px 20px 22px; }
  .geo-strip { padding: 18px 18px; font-size: 12px; }
}

/* ============ UPGRADED FEATURES (v4) ============ */

/* Social bar — sticky right side on desktop, top-right floating on mobile */
.social-bar {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--cream-line);
  transition: all .15s;
  text-decoration: none;
  color: var(--black);
  position: relative;
}
.social-btn:hover {
  transform: scale(1.08);
  border-color: var(--bronze);
}
.social-btn.whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.social-btn.whatsapp:hover {
  background: #1faa54;
  border-color: transparent;
}
.social-btn.facebook { color: #1877F2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; }
.social-btn.tiktok { background: #000; color: white; }
.social-btn-label {
  position: absolute;
  right: 100%;
  margin-right: 10px;
  background: var(--black);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
  font-weight: 500;
}
.social-btn:hover .social-btn-label { opacity: 1; }

/* Sticky mobile bottom CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 1px solid #2a2a2a;
  padding: 10px 12px;
  z-index: 100;
  gap: 8px;
}
.mobile-cta-bar a {
  flex: 1;
  padding: 12px 8px;
  border-radius: 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mobile-cta-bar .m-call {
  background: var(--white);
  color: var(--black);
}
.mobile-cta-bar .m-whatsapp {
  background: #25D366;
  color: white;
}
.mobile-cta-bar .m-quote {
  background: var(--bronze);
  color: var(--black);
}

/* City auto-detect chip in hero */
.city-chip {
  display: inline-block;
  background: rgba(184,148,92,0.15);
  color: var(--bronze);
  border: 1px solid rgba(184,148,92,0.4);
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.city-chip strong { color: var(--white); }

/* Click-to-call button (replaces plain text phone) */
.call-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 5px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
}
.call-button:hover {
  background: rgba(184,148,92,0.18);
  border-color: var(--bronze);
}

/* Recently-quoted ticker */
.ticker {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--gray-666);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ticker::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.ticker strong { color: var(--black); font-weight: 500; }

/* Mobile adjustments */
@media (max-width: 900px) {
  .social-bar {
    top: auto;
    bottom: 80px;
    transform: none;
    right: 12px;
    flex-direction: column-reverse;
  }
  .social-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .social-btn-label { display: none; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 64px; }
}

/* ============ NAV DROPDOWN (Services menu) ============ */
.nav-menu .has-dropdown {
  position: relative;
}
.nav-menu .has-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  color: var(--gray-c9);
  margin-left: 2px;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--black);
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  min-width: 220px;
  padding: 8px 0;
  list-style: none;
  margin-top: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 200;
}
.nav-menu .has-dropdown:hover .nav-dropdown,
.nav-menu .has-dropdown:focus-within .nav-dropdown {
  display: block;
}
.nav-dropdown li { margin: 0; }
.nav-dropdown li a {
  display: block;
  padding: 10px 16px;
  color: var(--gray-c9);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-dropdown li a:hover {
  background: #1a1a1a;
  color: var(--bronze);
}
@media (max-width: 900px) {
  .nav-menu .has-dropdown > a::after { display: none; }
  .nav-dropdown {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    margin-top: 0;
    min-width: 0;
  }
  .nav-dropdown li a {
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray-c9);
  }
}

/* ============ HERO STAR RATING — make clickable ============ */
.hero-rating-link {
  color: var(--gray-c9);
  text-decoration: none;
  transition: color 0.15s;
}
.hero-rating-link:hover { color: var(--bronze); }
.hero-rating-link strong { color: var(--white); }

/* ============ SAMPLE REVIEW DISCLAIMER (subtle) ============ */
.sample-review-tag {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-666);
  background: var(--cream);
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 8px;
  font-weight: 500;
}

/* ============ HERO QUICK QUOTE ============ */
.hero-quick-quote {
  margin-top: 24px;
  padding: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}
.hero-quick-quote-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 10px;
}
.hero-quick-quote-row {
  display: flex;
  gap: 8px;
}
.hero-quick-quote-row input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.3);
  color: var(--white);
  border-radius: 5px;
  font-size: 14px;
  font-family: inherit;
}
.hero-quick-quote-row input::placeholder { color: var(--gray-666); }
.hero-quick-quote-row input:focus {
  outline: none;
  border-color: var(--bronze);
}
.hero-quick-quote-row button {
  padding: 12px 22px;
  background: var(--bronze);
  color: var(--black);
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: filter 0.15s;
}
.hero-quick-quote-row button:hover { filter: brightness(1.1); }
.hero-quick-quote-hint {
  font-size: 11px;
  color: var(--gray-666);
  margin-top: 8px;
}
@media (max-width: 600px) {
  .hero-quick-quote-row { flex-direction: column; }
}

/* ============ TRUST STRIP — subtle bronze accent line ============ */
.trust { 
  border-top: 2px solid var(--bronze);
}

/* ============ PRICING — sample jobs at top ============ */
.sample-jobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0 48px;
  padding: 28px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--cream-line);
}
.sample-job {
  padding: 16px;
  background: white;
  border-radius: 6px;
  border-left: 3px solid var(--bronze);
}
.sample-job-name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-666);
  margin-bottom: 4px;
  font-weight: 500;
}
.sample-job-spec {
  font-size: 14px;
  color: var(--black);
  margin-bottom: 8px;
}
.sample-job-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}
.sample-job-price span {
  font-size: 12px;
  color: var(--gray-666);
  font-weight: 400;
  margin-left: 4px;
}

/* ============ GALLERY ITEM — make clickable feel ============ */
.gallery-item {
  cursor: pointer;
  transition: transform 0.15s;
}
.gallery-item:hover {
  transform: translateY(-2px);
}
.gallery-item:hover .gallery-item-photo {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.gallery-item-photo {
  transition: box-shadow 0.15s;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox-content {
  background: white;
  border-radius: 8px;
  max-width: 720px;
  width: 100%;
  padding: 32px;
  position: relative;
}
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--gray-666);
  cursor: pointer;
  width: 36px;
  height: 36px;
}
.lightbox-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  margin-bottom: 16px;
}
.lightbox h3 {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 4px;
}
.lightbox-city { color: var(--gray-666); margin-bottom: 16px; font-size: 14px; }
.lightbox-cta { 
  display: inline-block;
  margin-top: 16px;
  padding: 12px 22px;
  background: var(--black);
  color: var(--white);
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* ============ HST footnote ============ */
.tax-note {
  font-size: 11px;
  color: var(--gray-666);
  font-style: italic;
}

/* ============ Hero photo placeholder — clearer signaling ============ */
.hero-photo {
  position: relative;
  overflow: hidden;
}
.hero-photo::after {
  content: '📷 Real install photos go here at launch';
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  text-align: center;
  background: rgba(0,0,0,0.7);
  color: var(--bronze);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.3px;
  font-weight: 500;
}
/* Hide this placeholder note when real images are added (.hero-photo.has-image) */
.hero-photo.has-image::after { display: none; }

/* ============ Photo row (below hero) — same treatment ============ */
.photo-row {
  position: relative;
}
.photo-row::after {
  content: 'Real photos coming at launch';
  position: absolute;
  top: -36px;
  right: 0;
  font-size: 11px;
  color: var(--gray-666);
  font-style: italic;
}
.photo-row.has-images::after { display: none; }

/* ============ Gallery placeholder — same treatment ============ */
.gallery-grid {
  position: relative;
}
.gallery-grid::before {
  content: '⚠ Sample tiles shown — real photos load at launch from the project archive';
  display: block;
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 24px;
  color: var(--black-555);
  font-size: 13px;
  text-align: center;
}
.gallery-grid.has-images::before { display: none; }

/* ===========================================================
   HOMEPAGE V2 — APPENDED SECTIONS (April 2026 rebuild)
   All new selectors prefixed with .v2- to avoid collisions.
   Tokens reused from :root above.
   =========================================================== */

/* ============ V2: Promo banner (sticky-top, dismissible, auto-disable Nov 1) ============ */
.v2-promo-banner.v2-hidden { display:none !important; }
.v2-promo-banner a { color: var(--cream); }

/* ============ V2: Language switch in nav ============ */
.nav-menu .v2-lang-switch > a { font-size: 13px; color: var(--gray-c9); }
.nav-menu .v2-lang-switch:hover > a { color: var(--bronze); }
.v2-lang-list { left: auto !important; right: 0; min-width: 160px !important; }

/* ============ V2: Hero (extends .hero) ============ */
.v2-hero { padding: 64px 32px 72px; background: var(--black); }
.v2-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.v2-hero-copy h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  color: var(--white);
  max-width: 620px;
}
.v2-hero-copy .hero-sub {
  font-size: 19px;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 540px;
  line-height: 1.45;
}

/* Pricing line above-fold */
.v2-pricing-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.v2-price-pill {
  background: rgba(245,244,239,0.06);
  border: 1px solid rgba(245,244,239,0.12);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.v2-price-pill strong { color: var(--white); font-weight: 600; }
.v2-promo-pill {
  background: rgba(184,148,92,0.16);
  border-color: rgba(184,148,92,0.5);
  color: var(--bronze);
}
.v2-promo-pill strong { color: var(--bronze); }
.v2-promo-pill.v2-hidden { display: none; }

/* Primary hero CTA */
.v2-btn-primary {
  font-size: 15px;
  padding: 16px 26px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 16px rgba(184,148,92,0.18);
}
.v2-btn-primary:hover { box-shadow: 0 8px 22px rgba(184,148,92,0.28); }

/* Secondary CTAs */
.v2-secondary-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  align-items: center;
}
.v2-mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-c9);
  padding: 6px 12px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  transition: all .15s;
}
.v2-mini-cta:hover { border-color: var(--bronze); color: var(--bronze); }
.v2-mini-cta.v2-mini-wa { color: #25D366; border-color: rgba(37,211,102,0.4); }
.v2-mini-cta.v2-mini-wa:hover { background: rgba(37,211,102,0.08); border-color: #25D366; color: #25D366; }
.v2-financing-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray-666);
  font-style: italic;
}

/* Hero photo — wide, beautiful, cover */
.v2-hero-photo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.v2-hero-photo picture, .v2-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-hero-photo-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(10,10,10,0.78);
  color: var(--bronze);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(2px);
}

/* ============ V2: 4-up category grid ============ */
.v2-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.v2-cat-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: 10px;
  overflow: hidden;
  transition: all .18s;
  display: block;
  text-decoration: none;
}
.v2-cat-card:hover {
  border-color: var(--bronze);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}
.v2-cat-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  position: relative;
}
.v2-photo-placeholder {
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}
.v2-photo-placeholder svg { display: block; width: 100%; height: 100%; }
.v2-photo-placeholder::after {
  content: attr(data-placeholder-label);
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  text-align: center;
  font-size: 10px;
  color: var(--bronze);
  background: rgba(10,10,10,0.7);
  padding: 4px 8px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.v2-cat-card-body { padding: 14px 16px 16px; }
.v2-cat-card-body h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--black);
}
.v2-cat-card-body p {
  font-size: 13px;
  color: var(--gray-666);
  margin: 0;
  line-height: 1.5;
}
.v2-cat-card-body strong { color: var(--black); font-weight: 600; }

/* ============ V2: Calculator hook section ============ */
.v2-calc-hook {
  background: var(--black);
  color: var(--cream);
  padding: 72px 32px;
  border-top: 4px solid var(--bronze);
}
.v2-calc-hook-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.v2-calc-hook .v2-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.v2-calc-hook h2 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 14px;
}
.v2-calc-hook p {
  font-size: 15px;
  color: var(--gray-c9);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 560px;
}
.v2-calc-hook-points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.v2-calc-hook-points li {
  font-size: 14px;
  color: var(--cream);
  padding: 6px 0 6px 22px;
  position: relative;
}
.v2-calc-hook-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-weight: 700;
}

/* Calculator mock visualization */
.v2-calc-mock {
  background: var(--black-soft);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 22px 24px;
  font-size: 13px;
}
.v2-calc-mock-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #222;
}
.v2-calc-mock-row span { color: var(--gray-666); }
.v2-calc-mock-row strong { color: var(--cream); font-weight: 500; }
.v2-calc-mock-promo strong { color: var(--bronze); }
.v2-calc-mock-promo span { color: var(--bronze); }
.v2-calc-mock-result {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--bronze);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.v2-calc-mock-result span { color: var(--gray-c9); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.v2-calc-mock-result strong { color: var(--white); font-size: 22px; font-weight: 600; }
.v2-calc-mock-caption {
  text-align: center;
  font-size: 11px;
  color: var(--gray-666);
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* ============ V2: 8-tile service grid (aluminum hero positioning) ============ */
.v2-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.v2-svc-tile {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .18s;
  text-decoration: none;
  color: inherit;
}
.v2-svc-tile:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.v2-svc-photo {
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  aspect-ratio: 4 / 3;
  position: relative;
}
.v2-svc-body { padding: 16px 18px; flex: 1; }
.v2-svc-body h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--black);
  letter-spacing: -0.005em;
}
.v2-svc-body p {
  font-size: 13px;
  color: var(--gray-666);
  line-height: 1.55;
  margin-bottom: 10px;
}
.v2-svc-price {
  font-size: 13px;
  color: var(--bronze);
  font-weight: 500;
}
.v2-svc-price strong { color: var(--black); font-weight: 600; }
.v2-svc-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--bronze);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 500;
}
.v2-svc-tag-new {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--bronze);
  text-transform: uppercase;
  margin-bottom: 6px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 600;
}
.v2-svc-tertiary { opacity: 0.92; }
.v2-svc-tertiary .v2-svc-body p em { color: var(--black-555); font-style: italic; }

/* HERO TILE — Aluminum spans 2x2 */
.v2-svc-hero {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-rows: 1.2fr 1fr;
}
.v2-svc-hero .v2-svc-photo { aspect-ratio: auto; }
.v2-svc-hero .v2-svc-body { padding: 24px 26px; }
.v2-svc-hero .v2-svc-body h3 { font-size: 22px; }
.v2-svc-hero .v2-svc-body p { font-size: 14px; max-width: 560px; }
.v2-svc-hero .v2-svc-price { font-size: 14px; }

/* ============ V2: Recent installs ============ */
.v2-installs-section { padding: 72px 32px; }
.v2-install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.v2-install {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--cream);
  cursor: zoom-in;
}
.v2-install img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.v2-install:hover img { transform: scale(1.04); }
.v2-install figcaption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.85) 100%);
  color: var(--white);
  padding: 30px 14px 12px;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.v2-install figcaption strong { color: var(--bronze); font-weight: 500; }
.v2-install-cta-row {
  text-align: center;
  margin-top: 28px;
}
.v2-install-cta-row a {
  font-size: 14px;
  color: var(--black);
  font-weight: 500;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 1px;
}
.v2-install-cta-row a:hover { color: var(--bronze); }

/* ============ V2: Curb appeal + before/after ============ */
.v2-curb-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.v2-curb-text .v2-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.v2-curb-text h2 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
  max-width: 520px;
}
.v2-curb-text p {
  font-size: 15px;
  color: var(--black-555);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 540px;
}
.v2-curb-roi {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-left: 3px solid var(--bronze);
  border-radius: 6px;
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--black-555);
  max-width: 360px;
  margin-top: 20px;
}
.v2-curb-roi strong { color: var(--black); font-weight: 600; }

/* Drag-controlled before/after slider */
.v2-ba-wrap { width: 100%; }
.v2-ba-slider {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: 10px;
  overflow: hidden;
  user-select: none;
  background: #1a1a1a;
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}
.v2-ba-after, .v2-ba-before {
  position: absolute;
  inset: 0;
}
.v2-ba-after img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2-ba-before {
  width: 50%; /* JS overrides via inline style */
  overflow: hidden;
  border-right: 2px solid var(--bronze);
  z-index: 2;
}
.v2-ba-before-illus {
  width: 100vw;
  max-width: 720px;
  height: 100%;
  background: linear-gradient(180deg, #6b5440 0%, #4a3525 50%, #2e1f12 100%);
  position: relative;
  overflow: hidden;
}
.v2-ba-before-rotwood {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,
      rgba(0,0,0,0.18) 0px, rgba(0,0,0,0.18) 1px,
      transparent 1px, transparent 14px),
    repeating-linear-gradient(90deg,
      rgba(60,40,20,0.5) 0px, rgba(60,40,20,0.5) 38px,
      rgba(40,28,12,0.7) 38px, rgba(40,28,12,0.7) 42px,
      transparent 42px, transparent 90px);
}
.v2-ba-before-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,0.65);
  color: var(--cream);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* Slider handle */
.v2-ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; /* JS overrides */
  width: 4px;
  background: var(--bronze);
  z-index: 3;
  pointer-events: none;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-ba-handle::after {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  background: var(--bronze);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.v2-ba-arrow {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.v2-ba-arrow:first-child { margin-right: 2px; }

/* Range input that drives the slider — invisible but on top */
.v2-ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  z-index: 4;
  cursor: ew-resize;
}
.v2-ba-note {
  font-size: 12px;
  color: var(--gray-666);
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

/* ============ V2: Compare table tweaks ============ */
.v2-compare-section { padding: 72px 32px; }
.v2-compare-wrap { overflow-x: auto; }
.v2-compare-table { font-size: 14px; min-width: 720px; }
.v2-compare-table thead th { text-align: left; }
.v2-compare-table tbody td:first-child { font-weight: 500; color: var(--black); }
.v2-compare-table tbody tr td:nth-child(2) { color: var(--bronze-dark); font-weight: 500; }

/* ============ V2: How it works (4 steps — extends .how) ============ */
.v2-how-section { padding: 72px 32px; }
.v2-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.v2-how-step {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: 10px;
  padding: 24px;
  position: relative;
}
.v2-how-num {
  width: 36px;
  height: 36px;
  background: var(--bronze);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 14px;
}
.v2-how-step h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--black);
}
.v2-how-step p {
  font-size: 13px;
  color: var(--gray-666);
  line-height: 1.6;
  margin: 0;
}

/* ============ V2: Warranty section ============ */
.v2-warranty-section { padding: 72px 32px; }
.v2-warranty-wrap { overflow-x: auto; margin-top: 24px; }
.v2-warranty-table { font-size: 14px; min-width: 600px; }
.v2-warranty-table tbody tr:last-child td { background: var(--cream); border-top: 2px solid var(--bronze); }
.v2-warranty-table tbody tr:last-child td strong { color: var(--black); }
.v2-warranty-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--black-555);
  font-style: italic;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ V2: FAQ tweaks ============ */
.v2-faq-section { padding: 72px 32px; }
.v2-faq-inner { max-width: 820px; margin: 0 auto; }
.v2-faq-section .faq-item { background: var(--white); border-radius: 8px; padding: 18px 24px; border-bottom: none; margin-bottom: 8px; border: 1px solid var(--cream-line); }
.v2-faq-section .faq-item summary { font-size: 15px; }
.v2-faq-section .faq-item[open] { border-color: var(--bronze); }

/* ============ V2: Geo strip with expandable full list ============ */
.v2-geo-strip {
  text-align: left;
  padding: 28px 32px;
}
.v2-geo-summary {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  line-height: 1.9;
}
.v2-geo-toggle {
  display: inline-block;
  margin-left: 12px;
  background: transparent;
  border: 1px solid #444;
  color: var(--gray-c9);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
}
.v2-geo-toggle:hover { border-color: var(--bronze); color: var(--bronze); }
.v2-geo-full {
  max-width: var(--max-w);
  margin: 24px auto 0;
  font-size: 13px;
  line-height: 1.9;
  color: var(--gray-c9);
  background: rgba(255,255,255,0.04);
  padding: 22px 28px;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
}
.v2-geo-full strong { color: var(--bronze); }

/* ============ V2: Footer additions ============ */
.v2-footer-social, .v2-footer-langs { display: flex; flex-wrap: wrap; gap: 12px; }
.v2-footer-social li, .v2-footer-langs li { margin: 0 !important; }
.v2-footer-langs li a { font-size: 13px; }
.v2-footer-langs li a[aria-current="page"] { color: var(--bronze); border-bottom: 1px solid var(--bronze); }

/* ============ V2: WhatsApp floating button (FAB) ============ */
.v2-wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--bronze);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(184,148,92,0.4);
  z-index: 80;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  animation: v2-wa-pulse 8s ease-in-out infinite;
}
.v2-wa-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(184,148,92,0.55);
  animation-play-state: paused;
}
@keyframes v2-wa-pulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(184,148,92,0.4); }
  10% { box-shadow: 0 8px 22px rgba(184,148,92,0.4), 0 0 0 0 rgba(184,148,92,0.55); }
  30% { box-shadow: 0 8px 22px rgba(184,148,92,0.4), 0 0 0 16px rgba(184,148,92,0); }
  100% { box-shadow: 0 8px 22px rgba(184,148,92,0.4), 0 0 0 16px rgba(184,148,92,0); }
}

/* ============ V2: Mobile sticky bar (2 buttons only — Call · Get Quote) ============ */
.v2-mobile-bar { gap: 8px; }
.v2-mobile-bar .m-call, .v2-mobile-bar .m-quote { flex: 1; padding: 13px 8px; font-size: 14px; }

/* ============ V2: Mobile responsive ============ */
@media (max-width: 1100px) {
  .v2-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .v2-hero-photo { max-height: 380px; }
  .v2-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-service-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .v2-svc-hero { grid-column: span 2; grid-row: span 1; grid-template-rows: auto auto; }
  .v2-calc-hook-inner, .v2-curb-inner { grid-template-columns: 1fr; gap: 32px; }
  .v2-how-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-install-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .v2-hero { padding: 40px 18px 56px; }
  .v2-hero-copy h1 { font-size: 30px; }
  .v2-hero-copy .hero-sub { font-size: 16px; }
  .v2-cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .v2-cat-card-body { padding: 12px; }
  .v2-cat-card-body h3 { font-size: 14px; }
  .v2-cat-card-body p { font-size: 12px; }
  .v2-service-grid { grid-template-columns: 1fr; gap: 12px; }
  .v2-svc-hero { grid-column: span 1; }
  .v2-calc-hook { padding: 48px 18px; }
  .v2-calc-hook h2 { font-size: 24px; }
  .v2-curb-text h2 { font-size: 24px; }
  .v2-how-grid { grid-template-columns: 1fr; }
  .v2-install-grid { grid-template-columns: 1fr; }
  .v2-installs-section, .v2-compare-section, .v2-how-section, .v2-warranty-section, .v2-faq-section { padding: 48px 18px; }
  .v2-wa-fab { bottom: 76px; }  /* clear the mobile sticky bar */
  .v2-geo-summary { font-size: 12px; }
  .v2-financing-note { margin-top: 12px; }
  .v2-secondary-ctas .v2-mini-cta { font-size: 12px; padding: 5px 10px; }
}

/* ============ V2 (fix): 9th tile — custom-job CTA, fills the empty grid cell ============ */
.v2-svc-cta {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  border: 1px dashed var(--bronze);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100%;
}
.v2-svc-cta:hover {
  background: linear-gradient(135deg, var(--black-soft) 0%, #2a1f10 100%);
  border-color: var(--bronze);
  border-style: solid;
}
.v2-svc-cta-inner {
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.v2-svc-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(184,148,92,0.14);
  border: 1px solid rgba(184,148,92,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  margin-bottom: 4px;
}
.v2-svc-cta h3 {
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
}
.v2-svc-cta p {
  color: var(--gray-c9);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 8px;
  max-width: 240px;
}
.v2-svc-cta-link {
  font-size: 13px;
  color: var(--bronze);
  font-weight: 500;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 1px;
  letter-spacing: 0.01em;
}

/* ============ V2: Post-deposit color visualizer (RESERVED SPACE — launching summer 2026) ============ */
.v2-visualizer-section {
  padding: 72px 32px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
}
.v2-visualizer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.v2-visualizer-text .v2-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.v2-visualizer-text h2 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
  max-width: 560px;
}
.v2-visualizer-text p {
  font-size: 15px;
  color: var(--black-555);
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 560px;
}
.v2-visualizer-text strong { color: var(--black); font-weight: 600; }
.v2-visualizer-points {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
}
.v2-visualizer-points li {
  font-size: 14px;
  color: var(--black-555);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.5;
}
.v2-visualizer-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-weight: 700;
}
.v2-visualizer-eta {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-left: 3px solid var(--bronze);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--black-555);
  margin-top: 18px;
  margin-bottom: 0;
  line-height: 1.55;
}
.v2-eta-tag {
  display: inline-block;
  background: var(--bronze);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  margin-right: 10px;
  text-transform: uppercase;
}

/* Phone mockup container */
.v2-visualizer-mock {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.18));
}
.v2-visualizer-mock svg {
  display: block;
  width: 100%;
  height: auto;
}
.v2-visualizer-mock-tag {
  text-align: center;
  font-size: 11px;
  color: var(--gray-666);
  margin-top: 12px;
  letter-spacing: 0.04em;
  font-style: italic;
}

@media (max-width: 1100px) {
  .v2-visualizer-inner { grid-template-columns: 1fr; gap: 40px; }
  .v2-visualizer-mock { max-width: 280px; }
}
@media (max-width: 700px) {
  .v2-visualizer-section { padding: 48px 18px; }
  .v2-visualizer-text h2 { font-size: 24px; }
  .v2-visualizer-mock { max-width: 240px; }
}

/* ============ V2: Sub-page components ============ */

/* Page hero (smaller than homepage hero — single H1 + subhead, no pricing pills) */
.v2-hero-page { padding: 48px 32px 56px; min-height: auto; }
.v2-hero-page .v2-hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; max-width: var(--max-w); margin: 0 auto; }
.v2-hero-page .v2-hero-text { color: var(--white); }
.v2-hero-page h1 { font-size: 44px; font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; color: var(--white); margin: 12px 0 16px; }
.v2-hero-page .v2-hero-sub { font-size: 18px; line-height: 1.5; color: var(--gray-c9); max-width: 560px; }
.v2-hero-page .v2-hero-eyebrow { display: inline-block; font-size: 12px; letter-spacing: 0.18em; color: var(--bronze); font-weight: 500; text-transform: uppercase; }
.v2-hero-page .v2-hero-photo { border-radius: 10px; overflow: hidden; position: relative; aspect-ratio: 16/9; }
.v2-hero-page .v2-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2-hero-page .v2-hero-photo-tag { position: absolute; bottom: 14px; left: 14px; background: rgba(10,10,10,0.78); color: var(--bronze); font-size: 12px; padding: 5px 10px; border-radius: 4px; letter-spacing: 0.04em; }
@media (max-width: 900px) {
  .v2-hero-page .v2-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .v2-hero-page h1 { font-size: 32px; }
}

/* Spec stack — 4-column grid of code/standard chips */
.v2-spec-stack { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 28px 0; }
.v2-spec-chip { background: var(--white); border: 1px solid var(--cream-line); border-left: 3px solid var(--bronze); padding: 16px 18px; border-radius: 6px; }
.v2-spec-chip .v2-spec-label { font-size: 11px; letter-spacing: 0.1em; color: var(--bronze); text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
.v2-spec-chip .v2-spec-value { font-size: 15px; color: var(--black); font-weight: 500; line-height: 1.4; }
.v2-spec-chip .v2-spec-detail { font-size: 13px; color: var(--gray-666); margin-top: 4px; line-height: 1.4; }

/* Content section — light cream background, large readable prose */
.v2-content-section { padding: 64px 32px; background: var(--cream); }
.v2-content-section.v2-on-white { background: var(--white); }
.v2-content-inner { max-width: 920px; margin: 0 auto; }
.v2-content-inner h2 { font-size: 28px; font-weight: 500; letter-spacing: -0.015em; color: var(--black); margin-bottom: 8px; }
.v2-content-inner h3 { font-size: 19px; font-weight: 500; color: var(--black); margin: 24px 0 8px; }
.v2-content-inner p { font-size: 16px; line-height: 1.65; color: var(--black-555); margin-bottom: 14px; }
.v2-content-inner strong { color: var(--black); font-weight: 600; }
.v2-content-inner ul, .v2-content-inner ol { margin: 12px 0 18px 22px; }
.v2-content-inner li { font-size: 15px; line-height: 1.55; color: var(--black-555); margin-bottom: 6px; }

/* Two-column content (text left, info card right) */
.v2-twocol { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.v2-twocol .v2-info-card { background: var(--white); border: 1px solid var(--cream-line); border-radius: 8px; padding: 22px 24px; }
.v2-twocol .v2-info-card h4 { font-size: 14px; letter-spacing: 0.06em; color: var(--bronze); text-transform: uppercase; margin-bottom: 10px; font-weight: 600; }
.v2-twocol .v2-info-card .v2-info-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--cream-line); font-size: 14px; }
.v2-twocol .v2-info-card .v2-info-row:last-child { border-bottom: 0; }
.v2-twocol .v2-info-card .v2-info-row strong { color: var(--black); }
@media (max-width: 800px) { .v2-twocol { grid-template-columns: 1fr; gap: 24px; } }

/* CTA band — dark, dramatic, end-of-section */
.v2-cta-band { background: var(--black); color: var(--white); padding: 56px 32px; text-align: center; }
.v2-cta-band-inner { max-width: 720px; margin: 0 auto; }
.v2-cta-band h2 { color: var(--white); font-size: 28px; font-weight: 500; margin-bottom: 12px; line-height: 1.25; }
.v2-cta-band p { color: var(--gray-c9); font-size: 16px; margin-bottom: 22px; line-height: 1.5; }
.v2-cta-band-btn { display: inline-block; padding: 14px 32px; font-size: 15px; }

/* Cross-sell tiles (3-up adjacent services) */
.v2-cross-sell { padding: 56px 32px; background: var(--cream); }
.v2-cross-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 960px; margin: 0 auto; }
.v2-cross-tile { background: var(--white); border: 1px solid var(--cream-line); border-radius: 8px; padding: 20px 22px; text-align: center; transition: transform .15s, border-color .15s; text-decoration: none; }
.v2-cross-tile:hover { transform: translateY(-2px); border-color: var(--bronze); }
.v2-cross-tile h4 { font-size: 16px; font-weight: 500; color: var(--black); margin: 0 0 6px; }
.v2-cross-tile .v2-cross-price { color: var(--bronze); font-size: 13px; font-weight: 500; margin: 0; }
@media (max-width: 700px) { .v2-cross-grid { grid-template-columns: 1fr; } }

/* Service comparison sub-grid (e.g., picket vs decorative) */
.v2-compare-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; }
.v2-compare-pair > div { background: var(--white); border: 1px solid var(--cream-line); border-radius: 8px; padding: 22px 24px; }
.v2-compare-pair h3 { color: var(--black); font-size: 18px; margin-bottom: 8px; }
.v2-compare-pair .v2-compare-pricing { font-size: 13px; color: var(--bronze); font-weight: 500; margin-top: 12px; }
@media (max-width: 700px) { .v2-compare-pair { grid-template-columns: 1fr; } }

/* Pricing table on /pricing page */
.v2-pricing-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; background: var(--white); border-radius: 8px; overflow: hidden; }
.v2-pricing-table th, .v2-pricing-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--cream-line); }
.v2-pricing-table thead { background: var(--black); color: var(--white); }
.v2-pricing-table thead th { font-weight: 500; font-size: 13px; letter-spacing: 0.04em; }
.v2-pricing-table tbody tr:hover { background: var(--cream); }
.v2-pricing-table .v2-price-strong { color: var(--black); font-weight: 600; }
.v2-pricing-table .v2-price-note { color: var(--gray-666); font-size: 13px; }
@media (max-width: 720px) { .v2-pricing-table { font-size: 13px; } .v2-pricing-table th, .v2-pricing-table td { padding: 10px 12px; } }

/* Contact cards — 3-up on /contact */
.v2-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0; }
.v2-contact-card { background: var(--white); border: 1px solid var(--cream-line); border-radius: 8px; padding: 24px; text-align: center; transition: border-color .15s; text-decoration: none; }
.v2-contact-card:hover { border-color: var(--bronze); }
.v2-contact-card-icon { font-size: 32px; margin-bottom: 8px; }
.v2-contact-card h3 { color: var(--black); font-size: 17px; margin: 0 0 6px; font-weight: 500; }
.v2-contact-card p { color: var(--black-555); font-size: 14px; margin: 0 0 4px; line-height: 1.5; }
.v2-contact-card .v2-contact-detail { color: var(--bronze); font-weight: 500; font-size: 15px; }
@media (max-width: 720px) { .v2-contact-grid { grid-template-columns: 1fr; } }

/* Gallery filter pills (gallery.html) */
.v2-gallery-filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 20px 0 28px; }
.v2-gallery-filter button { background: var(--white); border: 1px solid var(--cream-line); padding: 8px 18px; border-radius: 999px; font-size: 13px; color: var(--black-555); cursor: pointer; transition: all .15s; font-weight: 500; }
.v2-gallery-filter button.is-active { background: var(--black); color: var(--white); border-color: var(--black); }
.v2-gallery-filter button:hover:not(.is-active) { border-color: var(--bronze); color: var(--bronze); }

/* Reviews grid */
.v2-review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; margin: 28px 0; }
.v2-review-card { background: var(--white); border: 1px solid var(--cream-line); border-radius: 8px; padding: 22px 24px; }
.v2-review-card .v2-review-stars { color: var(--bronze); font-size: 15px; letter-spacing: 0.04em; margin-bottom: 8px; }
.v2-review-card blockquote { font-style: italic; color: var(--black); line-height: 1.55; margin: 0 0 12px; font-size: 15px; }
.v2-review-card .v2-review-meta { font-size: 13px; color: var(--gray-666); }
.v2-review-card .v2-review-meta strong { color: var(--black); }

/* Area-page intro card */
.v2-area-intro { background: var(--cream); padding: 56px 32px; }
.v2-area-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 720px; margin: 24px auto 0; }
.v2-area-stat { background: var(--white); border-left: 3px solid var(--bronze); padding: 18px 20px; border-radius: 6px; }
.v2-area-stat .v2-area-stat-num { font-size: 24px; font-weight: 600; color: var(--black); }
.v2-area-stat .v2-area-stat-label { font-size: 12px; color: var(--gray-666); letter-spacing: 0.04em; }
@media (max-width: 700px) { .v2-area-stats { grid-template-columns: 1fr; } }

/* ============ V2: Promo banner — base styling (migrated from inline critical CSS) ============ */
.v2-promo-banner { background: linear-gradient(90deg, #0a0a0a 0%, #1a1208 100%); color: #f5f4ef; padding: 10px 32px; font-size: 13px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; border-bottom: 1px solid #2a2a2a; position: relative; }
.v2-promo-banner strong { color: #b8945c; font-weight: 600; }
.v2-promo-banner .v2-countdown { background: rgba(184, 148, 92, 0.18); border: 1px solid rgba(184, 148, 92, 0.4); color: #b8945c; padding: 2px 10px; border-radius: 999px; font-weight: 500; font-size: 12px; letter-spacing: 0.02em; }
.v2-promo-banner .v2-promo-cta { color: #f5f4ef; border-bottom: 1px solid #b8945c; padding-bottom: 1px; font-weight: 500; }
.v2-promo-banner .v2-promo-close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: transparent; border: none; color: #888; cursor: pointer; font-size: 18px; line-height: 1; padding: 4px 8px; }
.v2-promo-banner .v2-promo-close:hover { color: #b8945c; }
.v2-promo-banner.v2-urgent { background: linear-gradient(90deg, #3a2a08 0%, #1a1208 100%); }
.v2-promo-banner.v2-final { background: linear-gradient(90deg, #3a1313 0%, #1a0a0a 100%); }
.v2-promo-banner.v2-final strong, .v2-promo-banner.v2-final .v2-countdown { color: #f87171; border-color: rgba(248, 113, 113, 0.4); background: rgba(248, 113, 113, 0.1); }
@media (max-width: 600px) {
  .v2-promo-banner { padding: 10px 36px 10px 14px; font-size: 12px; gap: 8px; }
  .v2-promo-banner .v2-promo-cta { display: none; }
}

/* ============ V2: Mobile chrome fixes (375px iPhone) ============ */
@media (max-width: 480px) {
  /* Hide redundant header CTA — mobile sticky bar already shows "Get a quote →" */
  .nav-cta { display: none !important; }
  /* Tighten nav padding so brand + Menu button fit at 375px */
  .nav-inner { padding-left: 12px; padding-right: 8px; gap: 8px; }
  /* Make the Menu button smaller */
  .nav-mobile-toggle { padding: 6px 10px; font-size: 13px; }
  /* Promo banner already wraps; tighten close button */
  .v2-promo-banner .v2-promo-close { right: 6px; padding: 4px 6px; }
  /* Trust strip — gentler horizontal padding */
  .trust-inner { padding-left: 12px; padding-right: 12px; }
  /* Hero/page hero — tighten side padding */
  .v2-hero-page { padding-left: 16px !important; padding-right: 16px !important; }
  /* Content sections — match */
  .v2-content-section { padding-left: 16px; padding-right: 16px; }
  .v2-cta-band { padding-left: 16px; padding-right: 16px; }
  .v2-cross-sell { padding-left: 16px; padding-right: 16px; }
  /* Geo strip overflow guard */
  .v2-geo-strip { padding-left: 16px; padding-right: 16px; word-wrap: break-word; }
  /* Footer overflow guard */
  .v2-footer .footer-inner { padding-left: 16px; padding-right: 16px; }
}

/* ============ V2: Expanded gallery + lightbox ============ */

/* Gallery filter pill count badges */
.v2-gallery-filter button { display: inline-flex; align-items: center; gap: 6px; }
.v2-gallery-count {
  background: rgba(184, 148, 92, 0.18);
  color: var(--bronze);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 10px;
  letter-spacing: 0.02em;
}
.v2-gallery-filter button.is-active .v2-gallery-count {
  background: var(--bronze);
  color: var(--black);
}

/* Tighter 3-up grid on the gallery page (override .v2-install-grid defaults) */
.v2-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .v2-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .v2-gallery-grid { grid-template-columns: 1fr; } }

.v2-gallery-grid .v2-install {
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.v2-gallery-grid .v2-install:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.v2-gallery-grid .v2-install:hover img {
  filter: brightness(1.04);
}
.v2-gallery-grid .v2-install::after {
  content: '⤢';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(10, 10, 10, 0.7);
  color: var(--bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity .15s;
  pointer-events: none;
}
.v2-gallery-grid .v2-install:hover::after { opacity: 1; }

/* Lightbox modal */
.v2-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: v2lbFadeIn .15s;
}
.v2-lightbox[hidden] { display: none; }
@keyframes v2lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

.v2-lightbox-figure {
  margin: 0;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.v2-lightbox-figure img {
  max-width: 100%;
  max-height: calc(90vh - 60px);
  height: auto;
  width: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
}
.v2-lightbox-figure figcaption {
  color: var(--cream);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.02em;
}

.v2-lightbox-close,
.v2-lightbox-prev,
.v2-lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border: 1px solid rgba(184, 148, 92, 0.3);
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  font-family: inherit;
}
.v2-lightbox-close:hover,
.v2-lightbox-prev:hover,
.v2-lightbox-next:hover {
  background: rgba(184, 148, 92, 0.3);
  color: var(--bronze);
  border-color: var(--bronze);
}
.v2-lightbox-close { top: 20px; right: 20px; font-size: 24px; }
.v2-lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 32px; }
.v2-lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 32px; }

@media (max-width: 600px) {
  .v2-lightbox { padding: 12px; }
  .v2-lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .v2-lightbox-prev { left: 8px; width: 40px; height: 40px; font-size: 26px; }
  .v2-lightbox-next { right: 8px; width: 40px; height: 40px; font-size: 26px; }
}

/* ============ V2: Nav dropdown divider + external link styling ============ */
.nav-dropdown-divider {
  height: 1px;
  background: rgba(184, 148, 92, 0.25);
  margin: 6px 16px;
  list-style: none;
}
.nav-dropdown .nav-dropdown-external {
  font-size: 12px;
  color: var(--gray-c9);
  letter-spacing: 0.01em;
}
.nav-dropdown .nav-dropdown-external:hover {
  color: var(--bronze);
}
