/* ============================================================
   PLATINUM HOME SERVICES — Main Stylesheet
   No frameworks. No build step. Pure CSS.
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --bg-dark:        #12141a;
  --bg-darker:      #0d0f14;
  --bg-section:     #1a1d24;
  --bg-card:        #1e2129;
  --border:         #272b35;

  --platinum:       #c9ced6;
  --platinum-light: #e8ebef;
  --platinum-dim:   #8892a0;

  --brass:          #c8963e;
  --brass-dark:     #a67832;
  --brass-light:    #e0b060;

  --white:          #ffffff;
  --text-body:      #b8c0cc;
  --text-muted:     #6e7887;

  --font-head: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius:    6px;
  --radius-lg: 12px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-lift: 0 8px 32px rgba(0,0,0,0.5);

  --header-h: 72px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button, input, select, textarea {
  font: inherit;
}

/* ── Typography helpers ───────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--platinum-light);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 700; }

p { font-size: 1rem; line-height: 1.7; }

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--dark  { background: var(--bg-dark); }
.section--alt   { background: var(--bg-section); }

.section__header {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}

.section__header p {
  color: var(--platinum-dim);
  font-size: 1.08rem;
  margin-top: 1rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--brass);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brass-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,150,62,0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--platinum-light);
  border: 2px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--platinum);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

/* ── ═══════════════════════════════════════════════════════ ──
   HEADER / NAV
── ═══════════════════════════════════════════════════════ ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(13, 15, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Wordmark */
.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark__primary {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.12em;
}

.wordmark__sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links {
  display: flex;
  gap: 28px;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--platinum);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--white);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--platinum-dim);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.phone-link:hover { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--platinum-light);
  border-radius: 2px;
  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); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(13, 15, 20, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 999;
  padding: 32px 24px 40px;
  flex-direction: column;
  gap: 8px;
}

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

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--platinum-light);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.01em;
}

.mobile-nav a:last-of-type { border-bottom: none; }

.mobile-nav .btn {
  margin-top: 16px;
  justify-content: center;
}

/* ── ═══════════════════════════════════════════════════════ ──
   HERO
── ═══════════════════════════════════════════════════════ ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 15, 20, 0.88) 0%,
    rgba(13, 15, 20, 0.72) 50%,
    rgba(13, 15, 20, 0.55) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: var(--header-h);
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

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

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--platinum);
  margin-bottom: 2.5rem;
  max-width: 560px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 2.5rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--platinum-dim);
  letter-spacing: 0.02em;
}

.trust-item svg {
  color: var(--brass);
  flex-shrink: 0;
}

/* ── ═══════════════════════════════════════════════════════ ──
   SERVICES GRID
── ═══════════════════════════════════════════════════════ ── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--brass);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(200,150,62,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brass);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.services__more {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--platinum-dim);
}

.services__more span {
  color: var(--brass);
  font-weight: 600;
}

/* ── ═══════════════════════════════════════════════════════ ──
   GALLERY
── ═══════════════════════════════════════════════════════ ── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
}

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

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

.gallery-item__caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,15,20,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__caption {
  opacity: 1;
}

.gallery-item__caption h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.gallery-item__caption span {
  font-size: 0.78rem;
  color: var(--brass-light);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.lightbox__caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--platinum-light);
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(13,15,20,0.7);
  padding: 10px 24px;
  border-radius: 30px;
  white-space: nowrap;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--platinum-light);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  transition: color var(--transition);
}

.lightbox__close:hover { color: var(--brass); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,15,20,0.6);
  border: 1px solid var(--border);
  color: var(--platinum-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--transition), color var(--transition);
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--brass); color: #fff; }

/* ── ═══════════════════════════════════════════════════════ ──
   PROCESS
── ═══════════════════════════════════════════════════════ ── */
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 0 16px;
}

.process-step__num {
  width: 64px;
  height: 64px;
  background: rgba(200,150,62,0.12);
  border: 2px solid var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brass);
  font-family: var(--font-head);
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Connector lines between steps */
@media (min-width: 900px) {
  .process__steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 32px);
    right: calc(12.5% + 32px);
    height: 2px;
    background: linear-gradient(to right, var(--brass), rgba(200,150,62,0.2), var(--brass));
    z-index: 0;
  }
  .process-step { position: relative; z-index: 1; }
}

/* ── ═══════════════════════════════════════════════════════ ──
   ABOUT / WHY US
── ═══════════════════════════════════════════════════════ ── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__content .eyebrow { display: block; }
.about__content h2 { margin-bottom: 1.25rem; }
.about__content p { color: var(--platinum-dim); margin-bottom: 1.5rem; }
.about__content p:last-of-type { margin-bottom: 0; }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.stat-card:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
}

.stat-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(200,150,62,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--brass);
}

.stat-card h4 {
  font-size: 0.92rem;
  color: var(--platinum-light);
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── ═══════════════════════════════════════════════════════ ──
   TESTIMONIALS
── ═══════════════════════════════════════════════════════ ── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--brass);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-card__stars {
  color: var(--brass);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--platinum);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--platinum-light);
}

.testimonial-card__location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── ═══════════════════════════════════════════════════════ ──
   SERVICE AREA
── ═══════════════════════════════════════════════════════ ── */
.service-area {
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-area h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-area p {
  color: var(--platinum-dim);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.service-area__towns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.town-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.82rem;
  color: var(--platinum-dim);
  font-weight: 600;
}

/* ── ═══════════════════════════════════════════════════════ ──
   CONTACT / QUOTE FORM
── ═══════════════════════════════════════════════════════ ── */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Contact info side */
.contact__info h2 { margin-bottom: 1rem; }
.contact__info > p { color: var(--platinum-dim); margin-bottom: 2rem; }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: rgba(200,150,62,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  flex-shrink: 0;
}

.contact-detail__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--platinum-light);
  transition: color var(--transition);
}

.contact-detail a:hover { color: var(--brass-light); }
.contact-detail small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Form */
.quote-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.quote-form h3 {
  margin-bottom: 24px;
  font-size: 1.3rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--platinum-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--platinum-light);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892a0' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(200,150,62,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form__submit { width: 100%; justify-content: center; margin-top: 8px; }

.form-success {
  display: none;
  background: rgba(40,200,100,0.08);
  border: 1px solid rgba(40,200,100,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 16px;
  text-align: center;
}

.form-success.visible { display: block; }

.form-success p {
  color: #6ee09a;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ── ═══════════════════════════════════════════════════════ ──
   FOOTER
── ═══════════════════════════════════════════════════════ ── */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer__brand .wordmark { margin-bottom: 16px; }
.footer__brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,150,62,0.08);
  border: 1px solid rgba(200,150,62,0.2);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brass);
  letter-spacing: 0.06em;
}

.footer__nav h5,
.footer__contact h5 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--platinum-dim);
  margin-bottom: 16px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__nav ul a:hover { color: var(--platinum); }

.footer__contact p,
.footer__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer__contact a:hover { color: var(--platinum); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__bottom a:hover { color: var(--platinum); }

/* ── ═══════════════════════════════════════════════════════ ──
   SCROLL REVEAL
── ═══════════════════════════════════════════════════════ ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.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; }

/* ── ═══════════════════════════════════════════════════════ ──
   IMAGE FALLBACKS
── ═══════════════════════════════════════════════════════ ── */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1d24 0%, #272b35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

img[data-src], img.lazy {
  background: linear-gradient(135deg, #1a1d24 0%, #272b35 100%);
}

/* ── ═══════════════════════════════════════════════════════ ──
   ACCESSIBILITY
── ═══════════════════════════════════════════════════════ ── */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── ═══════════════════════════════════════════════════════ ──
   RESPONSIVE — Mobile-first breakpoints
── ═══════════════════════════════════════════════════════ ── */

/* ── Under 640px (phones) ── */
@media (max-width: 639px) {
  :root { --header-h: 64px; }

  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }

  .nav__links,
  .nav__actions .phone-link,
  .nav__actions .btn { display: none; }

  .hamburger { display: flex; }

  .hero { min-height: 100svh; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .trust-strip { gap: 12px; }
  .trust-item { font-size: 0.75rem; }

  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery-item__caption { opacity: 1; }

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

  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 20px; }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__caption { display: none; }

  .process__steps { grid-template-columns: 1fr 1fr; }
}

/* ── 640px – 899px (tablets portrait) ── */
@media (min-width: 640px) and (max-width: 899px) {
  .nav__links { display: none; }
  .hamburger { display: flex; }

  .about__inner { grid-template-columns: 1fr; gap: 56px; }
  .contact__inner { grid-template-columns: 1fr; gap: 56px; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ── 900px + (desktop) ── */
@media (min-width: 900px) {
  .hamburger { display: none; }
}

/* ── Under 375px ultra-small ── */
@media (max-width: 374px) {
  .about__stats { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
}
