/* =============================================================
   RPR REMODELING - style.css
   Theme: Black / White / Warm Orange (#D4752A)
   ============================================================= */

/* ===== VARIABLES ===== */
:root {
  --orange:       #D4752A;
  --orange-hover: #E8883C;
  --orange-dim:   rgba(212, 117, 42, 0.12);
  --black:        #0A0A0A;
  --dark:         #111111;
  --dark-alt:     #181818;
  --dark-card:    #1E1E1E;
  --dark-border:  #2A2A2A;
  --white:        #FFFFFF;
  --gray:         #9A9A9A;
  --gray-light:   #D0D0D0;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w:        1200px;
  --nav-h:        68px;
  --radius:       6px;
  --t:            0.22s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: var(--dark-border) var(--dark);
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }
::selection { background: var(--orange); color: var(--white); }

/* ===== TYPOGRAPHY ===== */
h1, h2 { font-family: var(--font-display); line-height: 1.0; letter-spacing: 0.01em; }
h1 { font-size: clamp(3.2rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.3; }
p { color: var(--gray-light); line-height: 1.75; }

/* ===== UTILITIES ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.h-accent { color: var(--orange); }

.section-wrap { padding: 5.5rem 1.5rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-dark { background: var(--dark); }
.section-alt  { background: var(--dark-alt); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.9rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.9rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color var(--t), background var(--t), transform var(--t);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--orange); background: var(--orange-dim); transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(10,10,10,0.97);
  transition: box-shadow var(--t);
}
.site-nav.scrolled {
  box-shadow: 0 1px 0 var(--dark-border);
  backdrop-filter: blur(16px);
}

.nav-logo { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.nav-logo-img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 50%;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--white);
  white-space: nowrap;
}

.nav-right { display: flex; align-items: center; gap: 1.75rem; }
.nav-links { display: flex; gap: 1.75rem; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--t);
}
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-active { color: var(--orange); }

/* ===== LANG TOGGLE ===== */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color var(--t);
  white-space: nowrap;
}
.lang-toggle:hover { color: var(--white); }
.lt-flag { font-size: 0.95rem; line-height: 1; }

.nav-cta {
  padding: 0.58rem 1.35rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--t);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-hover); }

/* ===== HAMBURGER ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.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 DRAWER ===== */
.nav-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: var(--black);
  z-index: 999;
  padding: 1.75rem 2rem 2rem;
  transform: translateY(-110%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer ul { display: flex; flex-direction: column; margin-bottom: 1.5rem; }
.nav-drawer ul a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-light);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--dark-border);
  letter-spacing: 0.03em;
  transition: color var(--t);
}
.nav-drawer ul a:hover { color: var(--orange); }
.drawer-cta {
  display: block;
  text-align: center;
  padding: 0.9rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  transition: background var(--t);
}
.drawer-cta:hover { background: var(--orange-hover); }
.drawer-phone {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border: 1px solid var(--dark-border);
  color: var(--gray-light);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: border-color var(--t), color var(--t);
}
.drawer-phone:hover { border-color: var(--orange); color: var(--white); }
.drawer-lang { width: 100%; justify-content: center; padding: 0.5rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-img { animation: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.78) 38%, rgba(10,10,10,0.35) 70%, rgba(10,10,10,0.55) 100%),
    linear-gradient(0deg, rgba(10,10,10,0.85) 0%, transparent 35%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4.5rem) 2rem 4rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.hero-content { flex: 1; min-width: 0; }
.hero h1 { margin: 0.5rem 0 1.2rem; text-shadow: 0 2px 30px rgba(0,0,0,0.5); }
.hero-sub {
  max-width: 500px;
  font-size: 1.08rem;
  margin-bottom: 2.2rem;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ===== NEED HELP? BADGE ===== */
.need-help-badge {
  flex-shrink: 0;
  position: relative;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-7deg);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45), inset 0 0 0 3px rgba(255,255,255,0.25);
  transition: transform var(--t);
}
.need-help-badge:hover { transform: rotate(-7deg) scale(1.05); }
.nhb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--orange);
  animation: nhbPulse 2.6s ease-out infinite;
}
.nhb-ring-2 { animation-delay: 1.3s; }
@keyframes nhbPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .nhb-ring { animation: none; display: none; }
}
.nhb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
}
.nhb-big {
  font-family: var(--font-display);
  font-size: 2.35rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nhb-rule {
  width: 54px;
  height: 2px;
  background: rgba(255,255,255,0.55);
  margin: 0.5rem 0;
}
.nhb-small {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.nhb-arrow {
  font-size: 1.4rem;
  color: var(--white);
  margin-top: 0.2rem;
}

/* ===== BEFORE / AFTER SLIDER ===== */
.ba-header { text-align: center; max-width: 640px; margin: 0 auto 2.75rem; }
.ba-header h2 { margin: 0.4rem 0 0.8rem; }
.ba-sub { font-size: 1.05rem; }

.ba-slider {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  aspect-ratio: 980 / 735;
  border-radius: var(--radius);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  cursor: ew-resize;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before-pane {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid var(--white);
}
.ba-before-pane .ba-img-before {
  inset: 0 auto auto 0;
  height: 100%;
  width: auto;
  max-width: none;
}
.ba-tag {
  position: absolute;
  top: 1rem;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  padding: 0.35rem 0.9rem;
  background: rgba(10,10,10,0.72);
  color: var(--white);
  border-radius: 4px;
  pointer-events: none;
}
.ba-tag-before { left: 1rem; }
.ba-tag-after { right: 1rem; color: var(--orange); }
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 44px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}
.ba-handle:focus-visible { outline: none; }
.ba-handle:focus-visible .ba-grip { box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--orange); }
.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: var(--white);
}
.ba-grip {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}
.ba-grip svg { width: 15px; height: 15px; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 2.25rem;
  transition: background var(--t);
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--dark-border);
}
.stat:hover { background: var(--orange-dim); }
.stat-icon { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.stat-label { font-size: 0.83rem; font-weight: 600; color: var(--gray-light); white-space: nowrap; }

/* ===== SERVICES TEASER (home) ===== */
.svc-teaser-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
}
.services-list li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.services-list li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--gray);
  transition: color var(--t), gap var(--t);
}
.services-list li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  transition: transform var(--t);
}
.services-list li a:hover { color: var(--white); gap: 1.1rem; }
.services-list li a:hover::before { transform: scale(1.5); }

/* ===== STATEMENT SECTION ===== */
.statement-section { background: var(--dark-alt); overflow: hidden; }
.statement-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.statement-content {
  padding: 4.5rem 3rem 4.5rem 2rem;
  display: flex;
  align-items: center;
}
.statement-wrap {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.statement-photo {
  position: relative;
  overflow: hidden;
}
.statement-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  display: block;
}
.statement-bar {
  width: 4px;
  min-height: 100%;
  background: var(--orange);
  border-radius: 4px;
  flex-shrink: 0;
  align-self: stretch;
}
.statement-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  color: var(--white);
  quotes: none;
  margin-bottom: 1rem;
}
.statement-from {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray);
  text-transform: uppercase;
}

/* ===== HOME CTA STRIP ===== */
.home-cta-strip { padding: 5rem 1.5rem; border-top: 1px solid var(--dark-border); }
.hcs-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hcs-text h2 { margin-bottom: 0.5rem; }
.hcs-text p { max-width: 440px; }
.hcs-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; flex-shrink: 0; }
.hcs-actions .btn-primary,
.hcs-actions .btn-ghost { padding: 1.05rem 2.5rem; font-size: 1.12rem; }

/* ===== SUBPAGE HERO ===== */
.subpage-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + 3.5rem) 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--dark-border);
}
.subpage-hero h1 { color: var(--white); margin: 0.4rem 0 0; }
.subpage-sub {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--gray);
}

/* ===== SERVICES GRID (services page) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(212,117,42,0.1);
}
.service-icon { width: 40px; height: 40px; color: var(--orange); margin-bottom: 1.1rem; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; flex: 1; }
.card-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  transition: color var(--t);
}
.card-link:hover { color: var(--orange-hover); }

/* ===== PAGE CTA ===== */
.page-cta { padding: 5rem 1.5rem; }
.page-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.page-cta-inner h2 { margin-bottom: 0.75rem; }
.page-cta-inner p { margin-bottom: 2rem; }
.page-cta-btns { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 3.5rem;
}
.gallery-tile {
  aspect-ratio: 4 / 3;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.55rem 0.8rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s;
}
.gallery-tile:hover .gallery-tile-caption { opacity: 1; }

/* Collage tile */
.gallery-collage { background: #111; }
.collage-grid {
  position: absolute;
  inset: 8px;
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 5px;
}
.collage-main,
.collage-stack { overflow: hidden; }
.collage-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.collage-cell { overflow: hidden; }
.collage-main img,
.collage-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-collage:hover .collage-main img,
.gallery-collage:hover .collage-cell img { transform: scale(1.06); }

/* Lightbox */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lb-overlay.open { display: flex; }
.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}
.lb-close {
  position: absolute;
  top: 1rem; right: 1.5rem;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  background: rgba(0,0,0,0.45);
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.lb-nav.active { opacity: 0.75; pointer-events: auto; }
.lb-nav.active:hover { opacity: 1; }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-counter {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  display: none;
}
.gallery-note {
  border-top: 1px solid var(--dark-border);
  padding-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.gallery-note p { max-width: 560px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--gray-light); letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 0.72rem 1rem;
  color: var(--white);
  font-size: 0.93rem;
  transition: border-color var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,117,42,0.14);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-card); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.1rem;
  background: rgba(212,117,42,0.1);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  color: var(--orange);
  font-weight: 600;
  font-size: 0.92rem;
}
.form-success.visible { display: flex; }
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }

.form-group input.input-error,
.form-group textarea.input-error {
  border-color: #e05555;
  outline: none;
}
.field-error {
  font-size: 0.78rem;
  color: #e05555;
  margin-top: 0.2rem;
}

.form-error {
  font-size: 0.85rem;
  color: #e05555;
  margin-top: 0.75rem;
  text-align: center;
}

.contact-info-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 1.75rem;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }
.contact-details li a,
.contact-details li .contact-detail-static {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--gray-light);
  font-size: 0.9rem;
  transition: color var(--t);
}
.contact-details li a:hover { color: var(--orange); }
.contact-details li a svg,
.contact-details li .contact-detail-static svg {
  width: 17px;
  height: 17px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-cta-stack { display: flex; flex-direction: column; gap: 0.65rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--dark-border);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.footer-logo { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; margin-bottom: 0.65rem; }
.footer-name { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.08em; color: var(--white); margin-bottom: 0.2rem; }
.footer-tagline { font-size: 0.82rem; color: var(--gray); }
.footer-links { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.88rem; color: var(--gray); transition: color var(--t); }
.footer-links a:hover { color: var(--orange); }
.footer-fb { display: inline-flex; align-items: center; gap: 0.4rem; }
.social-icon { width: 13px; height: 13px; flex-shrink: 0; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid var(--dark-border);
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
  .need-help-badge {
    position: absolute;
    top: calc(var(--nav-h) + 1rem);
    right: 1.25rem;
    width: 152px;
    height: 152px;
  }
  .nhb-big { font-size: 1.65rem; }
  .nhb-rule { width: 38px; margin: 0.38rem 0; }
  .nhb-small { font-size: 0.74rem; }
  .nhb-arrow { font-size: 1.1rem; }
  .hcs-inner { flex-direction: column; text-align: center; }
  .hcs-text p { max-width: 100%; }
  .hcs-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta, .lang-toggle:not(.drawer-lang) { display: none; }
  .nav-hamburger { display: flex; }
  .nav-wordmark { display: none; }

  .section-wrap { padding: 3.5rem 1.25rem; }
  .subpage-hero { padding: calc(var(--nav-h) + 2.5rem) 1.25rem 2rem; }

  .hero-inner { padding: calc(var(--nav-h) + 3rem) 1.25rem 3rem; }
  .hero h1 { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; }
  .need-help-badge {
    width: 132px;
    height: 132px;
    top: calc(var(--nav-h) + 0.75rem);
    right: 1rem;
  }
  .nhb-big { font-size: 1.4rem; }
  .nhb-rule { width: 30px; margin: 0.3rem 0; }
  .nhb-small { font-size: 0.66rem; letter-spacing: 0.08em; }
  .nhb-arrow { display: none; }
  .ba-tag { font-size: 0.78rem; letter-spacing: 0.12em; padding: 0.28rem 0.7rem; }
  .ba-grip { width: 40px; height: 40px; }

  .svc-teaser-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .services-list { grid-template-columns: 1fr; }

  .statement-split { grid-template-columns: 1fr; }
  .statement-content { padding: 3rem 1.25rem; }
  .statement-photo { height: 280px; }
  .statement-quote { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  .home-cta-strip { padding: 3.5rem 1.25rem; }
  .hcs-actions { flex-direction: column; width: 100%; max-width: 380px; margin: 0 auto; gap: 0.8rem; }
  .hcs-actions .btn-primary,
  .hcs-actions .btn-ghost { width: 100%; padding: 1.2rem 1.5rem; font-size: 1.25rem; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); gap: 4px; }

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

  .gallery-note { flex-direction: column; align-items: flex-start; }

  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-links { gap: 2.5rem; }
}

@media (max-width: 640px) {
  .stats-strip { display: grid; grid-template-columns: 1fr 1fr; }
  .stat { padding: 1rem 1.25rem; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid var(--dark-border); }
  .stat:nth-child(1),
  .stat:nth-child(3) { border-right: 1px solid var(--dark-border); }
}

@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .section-wrap { padding: 2.75rem 1.25rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-cta-btns { flex-direction: column; }
  .hero h1 { font-size: clamp(2.5rem, 13vw, 3.2rem); }
}
