/* ═══════════════════════════════════════════════════════
   BEACH CONSTRUCTION LLC — Shared Stylesheet
   Industrial Luxury Aesthetic
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@400;600;700;800;900&family=Libre+Franklin:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  --bg:            #090807;
  --surface:       #100F0C;
  --surface-2:     #181610;
  --surface-3:     #201E14;
  --accent:        #C9A84C;
  --accent-light:  #E2C06A;
  --accent-dim:    rgba(201,168,76,0.12);
  --accent-glow:   rgba(201,168,76,0.30);
  --text:          #F5EFE0;
  --text-muted:    #7A7264;
  --text-dim:      #3E3B32;
  --border:        rgba(245,239,224,0.07);
  --border-accent: rgba(201,168,76,0.28);
  --font-display:  'Big Shoulders Display', sans-serif;
  --font-body:     'Libre Franklin', sans-serif;
  --ease-out:      cubic-bezier(0.22,1,0.36,1);
  --nav-h:         72px;
}

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

/* ─── GRAIN OVERLAY ───────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ─── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ─── UTILITY ─────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.section { padding: 8rem 0; }
.section--alt { background: var(--surface); }
.section--dark { background: var(--bg); }

/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes lineGrow {
  from { width: 0; }
  to   { width: 100%; }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s, color 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); }
.btn svg { flex-shrink: 0; }

/* ─── SECTION HEADERS ─────────────────────────────────── */
.section-header { margin-bottom: 4rem; }
.section-header__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-header__eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--accent);
}
.section-header__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}
.section-header__title em {
  font-style: normal;
  color: var(--accent);
}
.section-header__body {
  max-width: 540px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1.25rem;
}
.section-header--center { text-align: center; }
.section-header--center .section-header__body { margin: 1.25rem auto 0; }
.section-header--center .section-header__eyebrow { justify-content: center; }

/* ─── NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9,8,7,0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 32px rgba(0,0,0,0.4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: var(--text);
}
.nav__logo-name span { color: var(--accent); }
.nav__logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0.9rem;
  position: relative;
  transition: color 0.2s;
}
.nav__link:hover, .nav__link.active { color: var(--text); }
.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0.9rem; right: 0.9rem;
  height: 1px;
  background: var(--accent);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding-top: 0.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 300;
}
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  white-space: nowrap;
}
.nav__dropdown-item:hover {
  background: var(--surface-3);
  color: var(--accent);
  padding-left: 1.5rem;
}
.nav__chevron {
  display: inline-block;
  margin-left: 3px;
  font-size: 0.6rem;
  transition: transform 0.2s;
}
.nav__dropdown.open .nav__chevron { transform: rotate(180deg); }
.nav__cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem !important;
  letter-spacing: 0.12em;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
  margin-left: 0.75rem;
}
.nav__cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 199;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile-section {
  width: 100%;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  display: block;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.nav__mobile-link:hover { color: var(--accent); }
.nav__mobile-sub {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  padding: 0.3rem 0 0.3rem 1rem;
  border-left: 2px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.nav__mobile-sub:hover { color: var(--accent); border-color: var(--accent); }
.nav__mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.nav__mobile-close:hover { color: var(--accent); }

/* ─── PAGE HERO (shared across all pages) ─────────────── */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  padding-bottom: 5rem;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
}
.page-hero.loaded .page-hero__bg { transform: scale(1.04); }
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(9,8,7,0.85) 0%,
    rgba(9,8,7,0.7) 50%,
    rgba(9,8,7,0.5) 100%
  );
}
.page-hero__overlay--strong {
  background: linear-gradient(
    160deg,
    rgba(9,8,7,0.92) 0%,
    rgba(9,8,7,0.8) 60%,
    rgba(9,8,7,0.6) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s var(--ease-out) 0.1s both;
}
.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.page-hero__eyebrow-line { width: 36px; height: 1px; background: var(--accent); }
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}
.page-hero__title em { font-style: normal; color: var(--accent); display: block; }
.page-hero__sub {
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1.5rem;
}
.page-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-accent);
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2rem;
  animation: float 4s ease-in-out infinite;
}

/* ─── MARQUEE ─────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 0.9rem 0;
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── SERVICE GRID (homepage) ─────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--surface);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { background: var(--surface-2); }
.service-card:hover::before { opacity: 1; }
.service-card--featured {
  grid-column: span 2;
  border-left: 3px solid var(--accent);
}
.service-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dim);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.service-card:hover .service-card__num { color: var(--accent); opacity: 0.35; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.service-card--featured .service-card__title { font-size: 1.8rem; }
.service-card__body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
}
.service-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.18rem 0.55rem;
  transition: border-color 0.2s, color 0.2s;
}
.service-card:hover .service-card__tag { border-color: var(--border-accent); color: var(--text); }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1.25rem;
  transition: gap 0.2s, opacity 0.2s, color 0.2s;
}
.service-card:hover .service-card__link { gap: 0.7rem; }

/* ─── EXPANDABLE CARDS ────────────────────────────────── */
.service-card--expandable {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.service-card--expandable .service-card__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 0;
  transition: max-height 0.45s var(--ease-out), opacity 0.35s, margin-bottom 0.35s;
}
.service-card--expandable.expanded .service-card__body {
  max-height: 200px;
  opacity: 1;
  margin-bottom: 1rem;
}
.service-card--expandable .service-card__link {
  opacity: 0.4;
  margin-top: auto;
  padding-top: 0.75rem;
}
.service-card--expandable.expanded .service-card__link {
  opacity: 1;
  color: var(--accent-light);
}

/* ─── PROCESS STEPS ───────────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:first-child { padding-top: 0; }
.process-step__num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--accent);
  min-width: 2.5rem;
  padding-top: 3px;
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.process-step__body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.process-step__body strong { color: var(--accent-light); font-weight: 500; }

/* ─── WARRANTY CARD ───────────────────────────────────── */
.warranty-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}
.warranty-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.warranty-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.warranty-badge {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  margin-top: 1.5rem;
}
.warranty-badge__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  flex-shrink: 0;
}
.warranty-badge__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--accent-light);
  line-height: 1.1;
}
.warranty-badge__body {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.6;
}
.checklist { display: flex; flex-direction: column; gap: 0.85rem; }
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.checklist__icon { color: var(--accent); flex-shrink: 0; margin-top: 1px; font-size: 0.7rem; }

/* ─── FEATURE GRID ────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-card {
  background: var(--surface-2);
  padding: 2rem;
  transition: background 0.3s;
}
.feature-card:hover { background: var(--surface-3); }
.feature-card__icon {
  width: 38px; height: 38px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s;
}
.feature-card:hover .feature-card__icon { background: var(--accent); }
.feature-card__icon svg { color: var(--accent); transition: color 0.3s; }
.feature-card:hover .feature-card__icon svg { color: #fff; }
.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.feature-card__body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── TESTIMONIALS ────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.3s, background 0.3s;
}
.testimonial-card:hover {
  border-color: var(--border-accent);
  background: var(--surface-2);
}
.testimonial-card__stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.testimonial-card__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-card__name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.testimonial-card__location { font-size: 0.7rem; color: var(--text-muted); }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1.4rem 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 20px; height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.3s, color 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-answer.open { max-height: 300px; padding-bottom: 1.25rem; }
.faq-answer strong { color: var(--accent-light); font-weight: 500; }

/* ─── CONTACT FORM ────────────────────────────────────── */
.contact-form-wrap {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.form-grid { 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.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--surface-3); color: var(--text); }
.form-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--accent-light); transform: translateY(-1px); }
.form-note { font-size: 0.72rem; color: var(--text-dim); text-align: center; margin-top: 0.75rem; }

/* ─── CONTACT INFO ────────────────────────────────────── */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 38px; height: 38px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { color: var(--accent); }
.contact-info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-info-value {
  font-size: 0.92rem;
  color: var(--text);
}
.contact-info-value a { transition: color 0.2s; }
.contact-info-value a:hover { color: var(--accent); }

/* ─── SERVICE AREA STRIP ──────────────────────────────── */
.service-area-strip {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.service-area-strip__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.service-area-strip__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.service-area-strip__divider { width: 40px; height: 1px; background: var(--border); }
.service-area-strip__cities { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.service-area-strip__city {
  font-size: 0.78rem;
  color: var(--text-muted);
  position: relative;
  padding-right: 0.75rem;
}
.service-area-strip__city::after { content: '·'; position: absolute; right: 0; color: var(--text-dim); }
.service-area-strip__city:last-child::after { display: none; }

/* ─── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.cta-banner__title em { font-style: normal; color: var(--accent); display: block; }
.cta-banner__sub {
  max-width: 460px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cta-banner__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color 0.2s;
}
.cta-banner__phone:hover { color: var(--accent); }

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.04em;
}
.footer__brand-name span { color: var(--accent); }
.footer__brand-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 0.5rem;
  max-width: 280px;
}
.footer__warranty-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-accent);
  padding: 0.35rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1.25rem;
}
.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.4rem 0.7rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer__social-link:hover {
  color: var(--accent);
  border-color: var(--border-accent);
  background: var(--accent-dim);
}
.footer__social-link svg { flex-shrink: 0; }
.map-section { padding: 5rem 0; background: var(--bg); }
.map-section .section-header { margin-bottom: 2.5rem; }
.map-embed {
  width: 100%;
  height: 420px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  filter: grayscale(0.3) contrast(1.05);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.footer__col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__col-links a {
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__col-links a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: 0.73rem;
  color: var(--text-dim);
}

/* ─── GRID LAYOUTS ────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.two-col--3-2 { grid-template-columns: 3fr 2fr; }
.two-col--2-3 { grid-template-columns: 2fr 3fr; }
.two-col--center { align-items: center; }
.stack { display: flex; flex-direction: column; gap: 2rem; }
.stack--sm { gap: 1rem; }

/* ─── DIVIDERS ────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* ─── STAT ROW ────────────────────────────────────────── */
.stat-row {
  display: flex;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-item__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.stat-item__num span { color: var(--accent); }
.stat-item__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ─── IMAGE BLOCK ─────────────────────────────────────── */
.img-block {
  position: relative;
  overflow: hidden;
  background: var(--surface-3);
}
.img-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-block__placeholder {
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--surface-3), var(--surface-2));
}
.img-block--accent-border { border-left: 3px solid var(--accent); }
.img-block__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(9,8,7,0.85), transparent);
  padding: 1rem 1.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── CALLOUT ─────────────────────────────────────────── */
.callout {
  padding: 1.75rem;
  border: 1px solid var(--border-accent);
  background: var(--accent-dim);
  position: relative;
}
.callout::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}
.callout__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.4rem;
}
.callout__body { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.callout__body strong { color: var(--text); font-weight: 500; }

/* ─── BREADCRUMB ──────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { color: var(--text-dim); font-size: 0.6rem; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-column: span 2; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col--3-2, .two-col--2-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; }
  .feature-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 1.5rem; }
  .cta-banner__actions { flex-direction: column; }
  .section { padding: 5rem 0; }
  .page-hero__title { font-size: clamp(2.8rem, 10vw, 5rem); }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .page-hero__actions { flex-direction: column; align-items: flex-start; }
  .page-hero { min-height: 60vh; }
}
