/* ══════════════════════════════════════════════
   PEMBROKE RADIATOR LLC — Single Page Stylesheet
══════════════════════════════════════════════ */

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

:root {
  --bg-deep:        #0d1117;
  --bg-dark:        #161b22;
  --bg-card:        #1c2330;
  --bg-card-hover:  #212a38;
  --border:         rgba(255,255,255,0.07);
  --border-light:   rgba(255,255,255,0.13);

  --amber:          #F59E0B;
  --amber-dark:     #D97706;
  --amber-glow:     rgba(245,158,11,0.15);

  --text-primary:   #f0f4f8;
  --text-muted:     #8b9db5;
  --text-faint:     #4a5568;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  26px;

  --shadow-card: 0 4px 32px rgba(0,0,0,0.45);

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-h:      72px;
  --section-py: 100px;
}

html { scroll-behavior: smooth; }

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), #fbbf24);
  z-index: 9999;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(245,158,11,0.6);
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Shared section spacing ── */
.section { padding: var(--section-py) 0; }

/* ── Section headers ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 14px auto 0;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 60px; }

.body-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--amber);
  color: #0d1117;
  border-color: var(--amber);
}
.btn--primary:hover {
  background: #fbbf24;
  border-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,158,11,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-light);
}
.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible       { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.nav-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-header.scrolled {
  background: rgba(13,17,23,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }

.nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 5px;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.88; }

.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--text-primary); background: var(--border); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  padding: 9px 20px;
  border: 1.5px solid rgba(245,158,11,0.35);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--amber-glow); border-color: var(--amber); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(13,17,23,0.98);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; }
.mobile-link {
  display: block;
  padding: 13px 28px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--text-primary); }
.mobile-phone { color: var(--amber) !important; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 28px 80px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; background: var(--bg-deep); }

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(13,17,23,0.9) 0%, rgba(13,17,23,0.6) 55%, rgba(13,17,23,0.82) 100%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: rgba(245,158,11,0.07);
  border-radius: 50%;
  filter: blur(120px);
  top: -200px; left: -150px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2.2s ease infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.75); }
}

.hero-title {
  font-size: clamp(42px, 7.5vw, 84px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.hero-title em { font-style: normal; color: var(--amber); }

.hero-subtitle {
  font-size: clamp(15px, 2.2vw, 19px);
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.65;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 3px; }
.stat-value {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 800;
  color: var(--text-primary);
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.hero-stat-divider {
  width: 1px; height: 38px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 32px; right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color 0.2s;
}
.hero-scroll:hover { color: var(--amber); }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--text-faint), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.services-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  will-change: transform;
}

.services-block__head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: rgba(245,158,11,0.04);
}

.services-block__icon {
  width: 52px; height: 52px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.services-block__head h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.services-block__head p {
  font-size: 13px;
  color: var(--text-muted);
}

.price-list { display: flex; flex-direction: column; }

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  transition: background 0.18s;
}
.price-item:last-child { border-bottom: none; }
.price-item:hover { background: var(--bg-card-hover); }

.price-item__info { flex: 1; }
.price-item__info strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.price-item__info span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.price-item__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
  text-align: right;
}
.price-item__price em {
  font-style: normal;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--amber);
}
.price-item__price small {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.services-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 22px;
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 8px;
}
.services-note svg { color: var(--amber); flex-shrink: 0; margin-top: 1px; }
.services-note a { color: var(--amber); }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ── Image column ── */
.about-images { display: flex; flex-direction: column; gap: 14px; }

.about-img-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-img-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-img-main:hover img { transform: scale(1.03); }

.about-img-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  background: rgba(13,17,23,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  padding: 7px 13px;
  border-radius: 100px;
}

.about-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-img-secondary {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-img-secondary img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.about-img-secondary:hover img { transform: scale(1.05); }

.about-img-sign {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.about-img-sign img {
  max-height: 130px;
  width: auto;
  object-fit: contain;
}

/* ── Text column ── */
.about-text-col .section-title { margin-top: 10px; margin-bottom: 24px; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

.about-pillar {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.about-pillar:hover { border-color: rgba(245,158,11,0.25); }

.about-pillar__img {
  width: 100px;
  flex-shrink: 0;
}
.about-pillar__img img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  display: block;
}

.about-pillar__body { padding: 12px 16px 12px 0; }
.about-pillar__body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.about-pillar__body p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* ══════════════════════════════
   GALLERY
══════════════════════════════ */
.gallery-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}

.gallery-item--tall { grid-row: span 2; }

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--shine-x, 50%) var(--shine-y, 50%),
    rgba(255,255,255,0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.93);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 92vw;
  max-height: 92vh;
}
.lightbox__inner img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.65);
}
.lightbox__caption {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.lightbox__close {
  position: fixed;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-details { display: flex; flex-direction: column; gap: 26px; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail__icon {
  width: 44px; height: 44px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 5px;
}
.contact-detail p,
.contact-detail a {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--amber); }

.contact-reach {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.reach-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  transition: all 0.2s;
}
.reach-btn:hover {
  background: var(--amber-glow);
  border-color: rgba(245,158,11,0.35);
  transform: translateY(-2px);
}

/* ── Form ── */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form-group label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.req { color: #fc8181; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(245,158,11,0.5);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.08);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b9db5' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option { background: var(--bg-dark); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 18px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: #10b981;
}
.form-success.show { display: flex; }

/* ══════════════════════════════
   TRUST / BBB
══════════════════════════════ */
.trust-section {
  background: #f4f6f9;
  border-top: 1px solid #dde3ec;
  padding: 56px 0;
  text-align: center;
}

.trust-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.trust-label {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.01em;
}

/* ── BBB Badge ── */
.bbb-badge {
  display: inline-flex;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,79,140,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  width: 280px;
}
.bbb-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(27,79,140,0.28);
}

.bbb-badge__left {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  position: relative;
  min-width: 96px;
}

.bbb-flame {
  width: 52px;
  height: 68px;
  display: block;
}

.bbb-badge__reg {
  position: absolute;
  bottom: 10px;
  right: 8px;
  font-size: 9px;
  font-weight: 700;
  color: #1B4F8C;
  line-height: 1;
}

.bbb-badge__right {
  background: #1B4F8C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  gap: 2px;
  flex: 1;
}

.bbb-badge__text {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 19px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* ══════════════════════════════
   MAP
══════════════════════════════ */
.map-section {
  border-top: 1px solid var(--border);
  filter: grayscale(0.25) brightness(0.9);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 56px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.7;
  margin-top: 14px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a,
.footer-col li {
  font-size: 14px;
  color: var(--text-faint);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-muted); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 28px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 13px; color: var(--text-faint); }

.footer-credit { font-size: 13px; color: var(--text-faint); }
.footer-credit a {
  color: var(--amber);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-credit a:hover { color: #fbbf24; }

@media (max-width: 600px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 960px) {
  :root { --section-py: 72px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-title { font-size: clamp(36px, 9vw, 64px); }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-images { order: 2; }
  .about-img-main img { height: 300px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .gallery-item--tall { grid-row: span 1; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }

  .services-block__head { flex-direction: column; align-items: flex-start; }

  .price-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .price-item__price { align-items: flex-start; }
}

@media (max-width: 600px) {
  :root { --section-py: 56px; }

  .hero { padding: calc(var(--nav-h) + 20px) 20px 56px; }
  .hero-stats { gap: 16px; }
  .hero-stat-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-scroll { display: none; }

  .services-block__head { padding: 20px; }
  .price-item { padding: 16px 20px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
  .gallery-item img { height: 260px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .contact-reach { flex-direction: column; }

  .footer-cols { grid-template-columns: 1fr; }

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