/* =============================================
   BRUNSON CONSTRUCTION, INC.
   style.css — Dark Luxury Theme
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --bg-primary: #1A1A18;
  --bg-secondary: #2E2E2A;
  --bg-card: #252522;
  --gold: #B8922A;
  --gold-light: #D4AF5A;
  --gold-dark: #8A6A1A;
  --cream: #F8F4EE;
  --muted: rgba(248, 244, 238, 0.55);
  --border: rgba(184, 146, 42, 0.25);
  --border-hover: rgba(184, 146, 42, 0.7);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-primary);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-body); font-size: 1rem; }

/* ---- SCROLL PROGRESS ---- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-sub {
  color: var(--muted);
  max-width: 580px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}
h1 { font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 900; line-height: 1.08; }
h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; }
h3 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; }
h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-primary);
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(248,244,238,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; text-align: center; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal-section { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-section.visible { opacity: 1; transform: none; }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: rgba(26, 26, 24, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}
#navbar.scrolled {
  background: rgba(26, 26, 24, 0.97);
  border-bottom-color: var(--border);
  padding: 0.85rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-mark {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--cream); line-height: 1; }
.logo-tagline { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  transition: color 0.25s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta { margin-left: 1rem; font-size: 0.75rem; padding: 0.6rem 1.4rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,146,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,146,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26,26,24,0) 0%, var(--bg-primary) 70%);
}
@keyframes gridShift { from { background-position: 0 0; } to { background-position: 60px 60px; } }

.hero-content { position: relative; z-index: 2; max-width: 860px; text-align: center; }
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 4rem; flex-wrap: wrap; }

/* Hero stat counters */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 2rem 2.5rem;
  background: rgba(46,46,42,0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2.5rem;
  position: relative;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.stat-suffix, .stat-prefix {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-prefix { margin-right: 2px; }
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll-hint span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }

/* Hero reveal animations */
.reveal-hero-1 { opacity: 0; transform: translateY(20px); animation: heroReveal 0.7s ease forwards 0.2s; }
.reveal-hero-2 { opacity: 0; transform: translateY(30px); animation: heroReveal 0.8s ease forwards 0.5s; }
.reveal-hero-3 { opacity: 0; transform: translateY(20px); animation: heroReveal 0.7s ease forwards 0.8s; }
.reveal-hero-4 { opacity: 0; transform: translateY(20px); animation: heroReveal 0.7s ease forwards 1.0s; }
.reveal-hero-5 { opacity: 0; transform: translateY(20px); animation: heroReveal 0.7s ease forwards 1.2s; }
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-badge { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; font-weight: 500; color: var(--cream); white-space: nowrap; }
.trust-icon { color: var(--gold); font-size: 0.7rem; }

/* ---- ABOUT ---- */
.about { background: var(--bg-primary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-col { position: relative; }
.about-img-placeholder {
  aspect-ratio: 3/4;
  background: var(--bg-secondary);
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-texture {
  display: none;
}
.est-badge {
  display: none;
}
.est-label { display: block; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }
.est-year { display: block; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900; line-height: 1; }
.about-img-caption {
  display: none;
}
.about-text-col h2 { margin-bottom: 1.25rem; }
.about-body { color: var(--muted); margin-bottom: 1rem; font-size: 1.02rem; }
.value-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.pillar { display: flex; gap: 0.75rem; align-items: flex-start; }
.pillar-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.pillar h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.pillar p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ---- SERVICES ---- */
.services { background: var(--bg-secondary); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.service-card:hover {
  background: #2a2a27;
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.card-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.card-hover-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover .card-hover-bar { transform: scaleX(1); }
.card-more {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.2rem;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .card-more { opacity: 1; transform: none; }
.card-detail {
  font-size: 0.88rem;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  border-top: 1px solid transparent;
}
.service-card.expanded .card-detail {
  max-height: 120px;
  padding-top: 1rem;
  border-top-color: var(--border);
  margin-top: 1rem;
}

/* ---- PROCESS ---- */
.process { background: var(--bg-primary); }
.process-stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-line {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.process-step.visible { opacity: 1; transform: none; }
.process-step:nth-child(2) { transition-delay: 0.1s; }
.process-step:nth-child(3) { transition-delay: 0.2s; }
.process-step:nth-child(4) { transition-delay: 0.3s; }
.process-step:nth-child(5) { transition-delay: 0.4s; }
.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}
.process-step h4 { margin-bottom: 0.6rem; font-size: 1rem; }
.process-step p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ---- GALLERY ---- */
.gallery { background: var(--bg-secondary); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.gallery-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.gallery-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg, transparent, transparent 20px,
    rgba(184,146,42,0.03) 20px, rgba(184,146,42,0.03) 40px
  );
  z-index: 1;
}
.gallery-tile:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=800&h=600&fit=crop');
}
.gallery-tile:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=600&h=600&fit=crop');
}
.gallery-tile:nth-child(3) {
  background-image: url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=600&h=600&fit=crop');
}
.gallery-tile:nth-child(4) {
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1000&h=600&fit=crop');
}
.tile-large { grid-column: 1 / 2; grid-row: 1 / 3; }
.tile-wide { grid-column: 2 / 4; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,24,0.7);
  display: flex; align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 2;
}
.gallery-tile:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.gallery-cta { text-align: center; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--bg-primary); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
/* Last card center if 5 */
.testi-card:nth-child(4) { grid-column: 1; }
.testi-card:nth-child(5) { grid-column: 2; }

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.testi-card:hover { transform: translateY(-5px) scale(1.01); border-color: var(--border-hover); }
.testi-quote-mark {
  position: absolute;
  top: -0.5rem; right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 8rem;
  color: rgba(184,146,42,0.07);
  line-height: 1;
  pointer-events: none;
}
.testi-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testi-body { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--gold-dark);
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.testi-name { display: block; font-weight: 600; font-size: 0.9rem; }
.testi-role { display: block; font-size: 0.75rem; color: var(--muted); }

/* ---- CTA SECTION ---- */
.cta-section { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-inner { text-align: center; }
.cta-inner h2 { margin: 0.75rem 0 1rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; margin: 2rem 0 1.5rem; flex-wrap: wrap; }
.cta-info { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted); }

/* ---- CONTACT ---- */
.contact { background: var(--bg-primary); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s;
  font-size: 0.95rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg-secondary); }
.form-group textarea { resize: vertical; min-height: 120px; }
#submit-btn { margin-top: 0.5rem; font-size: 0.88rem; letter-spacing: 0.1em; }
.form-success {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(184,146,42,0.1);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.92rem;
  text-align: center;
}

/* Map placeholder */
.map-placeholder {
  aspect-ratio: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-grid {
  display: none;
}
.map-pin { display: none; }
@keyframes pinBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.map-label {
  display: none;
}
.map-label strong { display: block; font-size: 0.85rem; color: var(--gold-light); margin-bottom: 0.2rem; }
.map-label span { display: block; font-size: 0.75rem; color: var(--muted); line-height: 1.5; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.cd-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.cd-label { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.cd-value { display: block; font-size: 0.92rem; color: var(--cream); transition: color 0.2s; }
a.cd-value:hover { color: var(--gold); }

/* ---- FOOTER ---- */
.footer { background: #111110; border-top: 1px solid var(--border); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo { margin-bottom: 1.25rem; }
.footer-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.08em; transition: color 0.2s; }
.footer-social:hover { color: var(--gold-light); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: var(--muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--cream); }
.footer-contact-list li { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.7rem; line-height: 1.5; }
.footer-contact-list a { color: var(--muted); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---- FLOATING BUTTONS ---- */
.float-call {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(184,146,42,0.4);
  transition: background 0.25s, transform 0.25s;
}
.float-call:hover { background: var(--gold-light); transform: scale(1.08); }
.back-to-top {
  position: fixed;
  bottom: 2rem; left: 2rem;
  width: 44px; height: 44px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 1.1rem;
  display: none;
  align-items: center; justify-content: center;
  z-index: 900;
  transition: background 0.25s, border-color 0.25s;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .nav-container { padding: 0 1.5rem; }
  .container { padding: 0 1.5rem; }
  .hero-content { max-width: 760px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 220px 220px; }
  .tile-large, .tile-wide { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-col { max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card:nth-child(4) { grid-column: auto; }
  .testi-card:nth-child(5) { grid-column: auto; }
  .gallery-overlay { align-items: center; justify-content: center; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: rgba(26,26,24,0.98); border-bottom: 1px solid var(--border); overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
  .nav-links.open { display: flex; max-height: 420px; }
  .nav-links li { border-top: 1px solid var(--border); }
  .nav-link { display: block; padding: 1rem 1.5rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  #navbar { position: fixed; }

  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-content { max-width: 100%; }
  .hero-sub { font-size: 1rem; max-width: 100%; }
  .hero-buttons { gap: 0.75rem; }
  .hero-stats { padding: 1.5rem 1rem; }
  .stat { width: 100%; padding: 1rem 0; }
  .stat-divider { width: 100%; height: 1px; }

  .services-grid { grid-template-columns: 1fr; }
  .process-stepper { grid-template-columns: 1fr; }
  .process-line { display: none; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .tile-large { grid-column: 1 / 3; grid-row: auto; }
  .tile-wide { grid-column: 1 / 3; }

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

  .form-row { grid-template-columns: 1fr; }
  .value-pillars { grid-template-columns: 1fr; }
  .trust-container { gap: 1rem; }
  .cta-info { flex-direction: column; gap: 0.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .map-placeholder { min-height: 280px; }
  .contact-map-col { order: -1; }
}

@media (max-width: 480px) {
  .nav-container { gap: 0.75rem; }
  .logo-text { display: none; }
  .nav-link { font-size: 0.82rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 0.95rem; }
  .section-pad { padding: 3rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stats { padding: 1rem; }
  .hero-scroll-hint { bottom: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tile { min-height: 260px; }
  .cta-buttons { flex-direction: column; }
  .cta-info { font-size: 0.82rem; }
  .footer-grid { gap: 2rem; }
  .footer-bottom { font-size: 0.75rem; }
}
