/* ============================================================
   PINELLAS RENOVATIONS — style.css
   Brand: Charcoal / White / Warm Gold / Warm Wood Tan / Palm Green
   ============================================================ */

:root {
  --charcoal:      #1F1F1F;   /* primary dark — nav, footer, deep sections */
  --charcoal-soft:  #2A2A2A;  /* secondary panels on dark backgrounds */
  --white:         #FFFFFF;
  --gold:          #D8B35A;   /* primary accent — CTAs, highlights */
  --gold-dark:     #B9924A;   /* hover state for gold */
  --wood-tan:      #B68A5B;   /* secondary warm accent */
  --palm:          #4F7F45;   /* used sparingly — small accents only */
  --gray:          #6b6b6b;
  --light-gray:    #e6e3dd;
  --cream:         #F7F5F1;   /* warm off-white section background */
  --border-soft:   rgba(31,31,31,0.1);

  /* legacy alias kept so nothing silently breaks if referenced elsewhere */
  --primary:       var(--gold);
  --primary-dark:  var(--gold-dark);
  --dark:          var(--charcoal);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

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

a { color: inherit; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--charcoal);
  padding: 1rem 1.5rem;
  z-index: 2000;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ── Navigation ──
   Scoped to nav[role="navigation"] (the header only) — NOT a bare `nav`
   selector, which would also match <nav class="footer-links"> and
   <nav class="gallery-category-nav"> and incorrectly make them fixed
   to the top of the page, covering the real header/logo. */
nav[role="navigation"] {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(31, 31, 31, 0.97);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.1rem 0;
  border-bottom: 3px solid var(--gold);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: var(--white);
  letter-spacing: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 96px;
  height: auto;
  display: block;
}

.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-links a:hover, .nav-links a:focus-visible { color: var(--gold); }

.cta-button {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
  border: 2px solid var(--gold);
}

.cta-button:hover, .cta-button:focus-visible {
  background: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
  color: var(--charcoal) !important;
}

.nav-phone {
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
}

.nav-phone:hover, .nav-phone:focus-visible { color: var(--gold) !important; }

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ── Sticky mobile click-to-call bar ── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: var(--charcoal);
  border-top: 2px solid var(--gold);
}

.mobile-call-bar-inner {
  display: flex;
}

.mobile-call-bar a {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0.9rem 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.mobile-call-bar .call-link {
  background: var(--gold);
  color: var(--charcoal);
}

.mobile-call-bar .estimate-link {
  background: var(--charcoal-soft);
  color: var(--white);
  border-left: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 56px; }
}

/* ── Breadcrumbs ── */
.breadcrumbs {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6.5rem 2rem 0;
  font-size: 0.85rem;
  color: var(--gray);
}

.breadcrumbs a { color: var(--gray); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-dark); text-decoration: underline; }
.breadcrumbs .sep { margin: 0 0.4rem; color: var(--light-gray); }
.breadcrumbs [aria-current="page"] { color: var(--charcoal); font-weight: 600; }

/* ── Hero (homepage) ── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(31,31,31,0.62), rgba(31,31,31,0.78)),
    url('site-images/kitchens/kitchen-remodel-white-shaker-island-after-01.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
}

.hero-content {
  max-width: 900px;
  width: 100%;
  min-width: 0;
  padding: 0 2rem;
  animation: fadeInUp 0.9s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content, .hero h1, .hero p, .hero-buttons { animation: none; }
  html { scroll-behavior: auto; }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.75rem, 8vw, 5.25rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  animation: fadeInUp 0.9s ease-out 0.15s both;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 2.5rem;
  color: var(--light-gray);
  animation: fadeInUp 0.9s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease-out 0.45s both;
}

.btn-primary, .btn-secondary {
  padding: 1.05rem 2.6rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border: 3px solid var(--gold);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(216, 179, 90, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 3px solid var(--white);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--white);
  color: var(--charcoal);
}

/* ── Generic inner-page hero (services / locations / projects / about) ── */
.page-hero {
  min-height: 46vh;
  background:
    linear-gradient(rgba(31,31,31,0.68), rgba(31,31,31,0.8)),
    var(--page-hero-image, none) center/cover no-repeat;
  background-color: var(--charcoal);
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 9rem 2rem 3.5rem;
}

.page-hero-inner { max-width: 1000px; margin: 0 auto; text-align: center; width: 100%; }

.page-hero-breadcrumb {
  font-size: 0.82rem;
  color: var(--light-gray);
  margin-bottom: 1.25rem;
  letter-spacing: 0.3px;
}

.page-hero-breadcrumb a { color: var(--light-gray); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb .sep { margin: 0 0.4rem; opacity: 0.6; }

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--light-gray);
  max-width: 700px;
  margin: 0 auto 1.75rem;
}

.page-hero .hero-buttons { justify-content: center; }

/* ── Trust bar (licensing / credibility strip) ── */
.trust-bar {
  background: var(--charcoal-soft);
  color: var(--white);
  padding: 1.1rem 2rem;
}

.trust-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.trust-bar-inner span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--light-gray);
}

.trust-bar-inner strong { color: var(--gold); font-weight: 600; }

/* ── Section shared ── */
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  color: var(--charcoal);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-title p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto;
}

section { padding: 6rem 2rem; }

.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.content-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 1px;
  margin: 2.5rem 0 1rem;
}

.content-section h2:first-child { margin-top: 0; }

.content-section p { color: #3a3a3a; margin-bottom: 1.1rem; line-height: 1.85; }

.content-section ul { padding-left: 1.4rem; margin-bottom: 1.1rem; color: #3a3a3a; }
.content-section li { margin-bottom: 0.5rem; line-height: 1.7; }

/* ── GC positioning callout ── */
.positioning-block {
  background: var(--cream);
  border-left: 5px solid var(--gold);
  padding: 2.25rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.positioning-block p { color: #3a3a3a; font-size: 1.05rem; line-height: 1.85; }
.positioning-block p + p { margin-top: 1rem; }

/* ── Services ── */
.services {
  background: var(--cream);
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  padding: 2.25rem;
  border-left: 5px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(216,179,90,0.1), transparent);
  transition: left 0.5s;
}

.service-card:hover::before { left: 100%; }
.service-card:hover, .service-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.service-icon { font-size: 2.5rem; margin-bottom: 1.1rem; }

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
  color: var(--charcoal);
}

.service-card p { color: var(--gray); margin-bottom: 1.1rem; line-height: 1.75; font-size: 0.95rem; }

.service-link {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.service-link:hover { text-decoration: underline; }

/* Services index — extra list for the folded-in services */
.more-services {
  max-width: 1100px;
  margin: 4rem auto 0;
  background: var(--white);
  border: 1px solid var(--border-soft);
  padding: 2.5rem;
}

.more-services h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.more-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem 2rem;
}

.more-services-grid li { list-style: none; color: #3a3a3a; padding: 0.4rem 0; border-bottom: 1px dashed var(--border-soft); font-size: 0.95rem; }

/* ── Why Choose Us ── */
.why-choose {
  background: var(--charcoal);
  color: var(--white);
}

.why-choose .section-title h2 { color: var(--white); }
.why-choose .section-title p  { color: var(--light-gray); }

.why-grid {
  max-width: 1400px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.why-item { text-align: center; padding: 1.5rem; }

.why-icon {
  font-size: 2.25rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
  line-height: 1;
}

.why-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  letter-spacing: 1px;
}

.why-item p { color: var(--light-gray); font-size: 0.95rem; }

/* ── Portfolio / Featured ── */
.portfolio {
  background: var(--cream);
}

.portfolio-grid {
  max-width: 1400px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.75rem;
}

.portfolio-item {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--charcoal-soft);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(31,31,31,0.95), transparent);
  padding: 1.75rem;
}

.portfolio-overlay h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.portfolio-overlay p { color: var(--light-gray); font-size: 0.85rem; }

.portfolio-cta { text-align: center; margin-top: 3rem; }

/* ── Project galleries ── */
.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  border: 0;
  background: none;
  padding: 0;
  cursor: zoom-in;
  overflow: hidden;
  height: 260px;
  position: relative;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.06); }

.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,20,20,0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gallery-lightbox.open { display: flex; }

.gallery-lightbox img { max-width: 100%; max-height: 88vh; }

.gallery-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.25rem;
  cursor: pointer;
  line-height: 1;
}

.gallery-category-nav {
  max-width: 1400px;
  margin: 0 auto 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.gallery-category-nav a {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border-soft);
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}

.gallery-category-nav a:hover, .gallery-category-nav a.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* ── Before / After ── */
.before-after-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ba-panel { position: relative; }

.ba-panel img { width: 100%; height: 340px; object-fit: cover; }

.ba-label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.4rem 1rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  font-size: 1rem;
}

.ba-panel.after .ba-label { background: var(--gold); color: var(--charcoal); }

.before-after-caption { text-align: center; color: var(--gray); margin-top: 1.5rem; font-size: 0.95rem; }

@media (max-width: 640px) {
  .before-after-grid { grid-template-columns: 1fr; }
}

/* ── Testimonials (built, hidden via HTML comment until real content exists) ── */
.testimonials { background: var(--white); }

.testimonial-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--cream);
  padding: 2.25rem;
  border-left: 5px solid var(--gold);
}

.testimonial-card p { color: #3a3a3a; font-style: italic; margin-bottom: 1.25rem; line-height: 1.8; }
.testimonial-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.75rem; }
.testimonial-card .author { font-weight: 700; color: var(--charcoal); font-style: normal; }
.testimonial-card .author span { display: block; font-weight: 400; color: var(--gray); font-size: 0.85rem; }

/* ── References ── */
.references-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--cream);
  padding: 3rem 2.5rem;
  border-left: 5px solid var(--wood-tan);
}

.references-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.references-block p { color: #3a3a3a; line-height: 1.8; margin-bottom: 0.5rem; }

/* ── FAQ ── */
.faq-list { max-width: 850px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-item summary {
  padding: 1.5rem 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.75rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p { color: #3a3a3a; padding-bottom: 1.5rem; line-height: 1.8; }

/* ── Reviews platform badges (built, hidden via HTML comment until linked) ── */
.review-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--border-soft);
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── Contact / Estimate Form ── */
.contact-section {
  background: var(--charcoal-soft);
  color: var(--white);
}

.contact-section .section-title h2 { color: var(--white); }
.contact-section .section-title p  { color: var(--light-gray); }

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  color: var(--gold);
}

.contact-info-block p,
.contact-info-block a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

.contact-info-block a:hover { color: var(--gold); }

.contact-info-block .info-item { margin-bottom: 1.85rem; }

.license-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 1.5rem;
  line-height: 1.6;
}

.estimate-form { display: flex; flex-direction: column; gap: 1.1rem; }

.estimate-form.short-form { gap: 0.9rem; }

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color 0.3s;
  outline: none;
}

.estimate-form input::placeholder,
.estimate-form textarea::placeholder { color: rgba(255,255,255,0.4); }

.estimate-form select { color: rgba(255,255,255,0.75); }
.estimate-form select option { background: var(--charcoal-soft); color: var(--white); }

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: var(--gold);
}

.estimate-form textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.5;
}

.form-consent input { width: auto; margin-top: 0.2rem; }

.form-file-label {
  font-size: 0.85rem;
  color: var(--light-gray);
}

.estimate-form input[type="file"] {
  padding: 0.6rem;
  font-size: 0.85rem;
}

.estimate-form button[type="submit"] {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
}

.estimate-form button[type="submit"]:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.form-privacy a { color: var(--gold); }

.form-success {
  display: none;
  background: rgba(216, 179, 90, 0.15);
  border: 1px solid var(--gold);
  padding: 1.5rem;
  color: var(--white);
  border-radius: 2px;
}

/* Short landing-page form card */
.landing-form-card {
  background: var(--charcoal-soft);
  color: var(--white);
  padding: 2.5rem;
  max-width: 460px;
  margin: 0 auto;
}

.landing-form-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.landing-form-card > p { color: var(--light-gray); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ── Footer ── */
footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.65rem;
  margin-bottom: 0.25rem;
  letter-spacing: 2px;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-divider {
  border: none;
  border-top: 1px solid var(--charcoal-soft);
  margin: 1.5rem 0;
}

.copyright {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.8;
}

.copyright a { color: var(--gray); text-decoration: underline; }

/* ── Legal / policy pages ── */
.policy-page { max-width: 800px; margin: 130px auto 4rem; padding: 0 2rem; }
.policy-page h1 { font-family: 'Bebas Neue', sans-serif; font-size: 2.75rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.policy-page h2 { font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.5rem; }
.policy-page p, .policy-page li { color: #3a3a3a; line-height: 1.8; margin-bottom: 0.75rem; }
.policy-page ul { padding-left: 1.5rem; }
.policy-page a { color: var(--gold-dark); }
.back-link { display: inline-block; margin-bottom: 2rem; color: var(--gold-dark); text-decoration: none; font-weight: 600; }
.updated-date { color: var(--gray); font-size: 0.9rem; margin-bottom: 2rem; }

/* ── 404 page ── */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 2rem 4rem;
}

.error-page h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 12vw, 7rem);
  color: var(--gold);
  letter-spacing: 3px;
  line-height: 1;
}

.error-page h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 1px;
  margin: 1rem 0 1.5rem;
}

.error-page p { color: var(--gray); margin-bottom: 2rem; }

/* ── Blog / Resources ── */
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.3s, transform 0.3s;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }

.blog-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}

.blog-card p { color: var(--gray); font-size: 0.92rem; }

.coming-soon-badge {
  display: inline-block;
  background: var(--cream);
  color: var(--wood-tan);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 1rem;
}

/* Placeholder service cards (not yet linked to a live page) */
.service-icon-placeholder {
  width: 48px;
  height: 48px;
  border: 1.5px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--cream);
  margin-bottom: 1.1rem;
}

.service-card-placeholder {
  cursor: default;
}

.service-card-placeholder:hover,
.service-card-placeholder:focus-visible {
  transform: none;
  box-shadow: none;
}

.service-card-placeholder:hover::before {
  left: -100%;
}

/* ── Financing (inactive placeholder page) ── */
.inactive-notice {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--cream);
  padding: 3rem 2.5rem;
  border-left: 5px solid var(--wood-tan);
}

/* ── Location page context blocks ── */
.local-context-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.local-context-grid img { width: 100%; height: 380px; object-fit: cover; }

.local-context-grid .text p { color: #3a3a3a; margin-bottom: 1.1rem; line-height: 1.85; }

@media (max-width: 800px) {
  .local-context-grid { grid-template-columns: 1fr; }
  .local-context-grid img { height: 280px; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }

  section { padding: 4.5rem 1.25rem; }
  .content-section { padding: 3.5rem 1.25rem; }

  .services-grid,
  .portfolio-grid,
  .before-after-grid { grid-template-columns: 1fr; }

  .portfolio-item { height: 280px; }

  .form-row { grid-template-columns: 1fr; }

  .hero-buttons { flex-direction: column; align-items: center; }

  .page-hero { padding: 7.5rem 1.5rem 3rem; min-height: 38vh; }

  .gallery-item { height: 220px; }
}

@media (max-width: 480px) {
  .footer-links { gap: 1rem; }
  .trust-bar-inner { gap: 0.5rem 1.25rem; font-size: 0.82rem; }
}
