/* =========================================================
   RES-TECH CONCRETE — Site Styles
   Vanilla CSS, no preprocessor required
   Edit :root block to change brand site-wide
   ========================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1C1F24;
  background: #F5F3EE;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ---------- BRAND TOKENS ----------
   Change colors / fonts here, propagates everywhere
   --------------------------------- */
:root {
  --charcoal: #1C1F24;
  --graphite: #2D3238;
  --steel:    #5A6570;
  --ash:      #9AA3AD;
  --line:     #D8D3C8;
  --concrete: #E8E4DC;
  --paper:    #F5F3EE;
  --white:    #FFFFFF;
  --orange:   #E8501C;
  --orange-dark: #B83D12;
  --amber:    #F5A623;
  --success:  #3F8F4A;

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Inter Tight', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow.with-line {
  display: inline-block;
  padding-left: 1rem;
  border-left: 3px solid var(--orange);
  margin-bottom: 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--charcoal);
}

/* ---------- TOP NAV ---------- */
nav.site {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
}
nav.site.scrolled { box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  width: 6px;
  height: 42px;
  background: var(--orange);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.logo-text .line1 {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.logo-text .line2 {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active {
  color: var(--orange);
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { width: 100%; }

.menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--charcoal);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.88rem;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: var(--white); }
.btn-ghost-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost-white:hover { background: var(--white); color: var(--charcoal); }
.btn-light { background: var(--white); color: var(--charcoal); }
.btn-light:hover { background: var(--paper); }
.btn-arrow::after { content: ' →'; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- LAYOUT ---------- */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; max-width: 900px; }
.section-header.centered { margin: 0 auto 3rem; text-align: center; }
.section-header.centered .eyebrow.with-line { border-left: none; padding-left: 0; }
.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 1.25rem;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--steel);
  line-height: 1.6;
}

/* ---------- PAGE HEROES (sub-pages) ---------- */
.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 4rem 2rem;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4rem);
  max-width: 1000px;
  margin-bottom: 1.5rem;
}
.page-hero p {
  color: var(--ash);
  font-size: 1.1rem;
  max-width: 700px;
}

/* ---------- HOMEPAGE HERO ---------- */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  padding: 6rem 2rem 4rem;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(232,80,28,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.9;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--orange); display: block; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--ash);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(255,255,255,0.02) 4px, rgba(255,255,255,0.02) 5px),
    linear-gradient(135deg, var(--graphite) 0%, var(--charcoal) 100%);
}
.hero-visual img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }

.placeholder-tag {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  border: 1px dashed rgba(232,80,28,0.4);
}
.placeholder-tag strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
  font-family: var(--font-display);
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--charcoal);
  color: var(--white);
  padding: 2.5rem 2rem;
}
.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; padding: 1rem; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ---------- CARDS ---------- */
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--orange);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--orange);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--steel);
  line-height: 1.55;
  flex: 1;
}
.service-card .link {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.service-card:hover .link { color: var(--orange); }

/* 12-card grid for Services page */
.cards-12 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-mini {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-mini::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}
.service-mini:hover { border-color: var(--orange); transform: translateX(4px); }
.service-mini:hover::before { transform: scaleY(1); }
.service-mini .label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--ash);
  letter-spacing: 0.2em;
  margin-bottom: 0.6rem;
}
.service-mini h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.service-mini p {
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.5;
}

/* ---------- SPLIT FEATURE (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-image {
  aspect-ratio: 5/4;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(255,255,255,0.03) 4px, rgba(255,255,255,0.03) 5px),
    linear-gradient(135deg, var(--graphite), var(--charcoal));
}
.split-image img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }

.split-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}
.split-content p {
  color: var(--steel);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.bullet-list { margin: 1.5rem 0; }
.bullet-list li {
  padding: 0.6rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-grid.preview-4 { display: grid; grid-template-columns: repeat(4, 1fr); }

.gallery-item {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
}
.gallery-item:nth-child(8n+1) { background: linear-gradient(135deg, #2D3238, #1C1F24); }
.gallery-item:nth-child(8n+2) { background: linear-gradient(135deg, #5A6570, #2D3238); }
.gallery-item:nth-child(8n+3) { background: linear-gradient(135deg, #1C1F24, #B83D12); }
.gallery-item:nth-child(8n+4) { background: linear-gradient(135deg, #E8E4DC, #9AA3AD); }
.gallery-item:nth-child(8n+5) { background: linear-gradient(135deg, #9AA3AD, #2D3238); }
.gallery-item:nth-child(8n+6) { background: linear-gradient(135deg, #2D3238, #5A6570); }
.gallery-item:nth-child(8n+7) { background: linear-gradient(135deg, #1C1F24, #2D3238); }
.gallery-item:nth-child(8n+8) { background: linear-gradient(135deg, #5A6570, #9AA3AD); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(255,255,255,0.04) 4px, rgba(255,255,255,0.04) 5px);
  pointer-events: none;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(28,31,36,0.85) 100%);
  transition: background 0.3s;
}
.gallery-item:hover::after {
  background: linear-gradient(180deg, rgba(232,80,28,0.2) 0%, rgba(28,31,36,0.9) 100%);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 1;
}
.gallery-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.gallery-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.1;
}
.gallery-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--white);
  opacity: 0.6;
  letter-spacing: 0.15em;
  z-index: 1;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -0.6rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--orange);
  line-height: 1;
}
.testimonial p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.testimonial-name span {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  color: var(--steel);
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.cta-band p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}
.cta-band .actions {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- QUOTE FORM ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.quote-info {
  background: var(--charcoal);
  color: var(--white);
  padding: 2.5rem;
  position: relative;
}
.quote-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}
.quote-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.info-row {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.info-row:last-child { border-bottom: none; }
.info-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ash);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.info-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}

.quote-form {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--line);
  position: relative;
}
.quote-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}
.form-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--steel);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--steel);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: all 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form-textarea {
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}
.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
}

.next-steps {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--concrete);
  border-left: 4px solid var(--orange);
}
.next-steps h4 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.next-steps ol { counter-reset: step; }
.next-steps li {
  counter-increment: step;
  padding: 0.5rem 0;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.95rem;
}
.next-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--orange);
  min-width: 1.5rem;
}

/* ---------- BOOK / CALENDLY ---------- */
.calendly-wrap {
  background: var(--paper);
  padding: 2.5rem;
  border: 1px solid var(--line);
  position: relative;
  min-height: 500px;
}
.calendly-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

.contact-callout {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}
.contact-callout p:first-of-type {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.contact-callout p:last-of-type {
  color: var(--ash);
  font-size: 0.9rem;
}

/* ---------- PAY DEPOSIT ---------- */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.pay-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pay-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}
.pay-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
  margin: 1rem 0;
}
.pay-amount span {
  font-size: 1rem;
  color: var(--steel);
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.pay-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.pay-card p {
  font-size: 0.9rem;
  color: var(--steel);
  flex: 1;
  margin-bottom: 1.5rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 2rem;
}
.trust-item {
  text-align: center;
  padding: 0.5rem;
}
.trust-item .icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--orange);
}
.trust-item h5 {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.trust-item p {
  font-size: 0.85rem;
  color: var(--ash);
}

.note-block {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-left: 4px solid var(--orange);
  font-size: 0.88rem;
  color: var(--steel);
  font-style: italic;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-block {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-block:last-child { border-bottom: none; }
.contact-block h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.contact-block p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.contact-block .sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--steel);
}

.map-mock {
  height: 280px;
  background: var(--charcoal);
  margin-top: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-mock::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px);
}
.map-pin {
  position: relative;
  z-index: 1;
  text-align: center;
}
.map-pin .pin {
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.map-pin h4 {
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.map-pin p {
  font-size: 0.85rem;
  color: var(--ash);
  margin-top: 0.3rem;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--charcoal);
  color: var(--ash);
  padding: 4rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-mark { height: 50px; }
.footer-brand .logo-text .line1,
.footer-brand .logo-text .line2 { font-size: 1.3rem; }
.footer-brand .logo-text .line1 { color: var(--white); }
.footer-brand-desc {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--ash);
  line-height: 1.65;
  max-width: 360px;
}
.footer-col h4 {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: 0.82rem;
  margin-bottom: 1.1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a, .footer-col li {
  font-size: 0.88rem;
  color: var(--ash);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash);
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.service-areas {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.service-areas-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.service-areas-list {
  font-size: 0.85rem;
  color: var(--ash);
}
.service-areas-list span:not(:last-child)::after {
  content: ' | ';
  color: var(--orange);
  opacity: 0.5;
  margin: 0 0.4rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--ash);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-tag {
  color: var(--orange);
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-inner,
  .quote-grid,
  .contact-grid,
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards-4, .cards-12, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-grid, .trust-row, .cards-3 { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
  }
  .stat-item:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  section { padding: 3rem 1.25rem; }
  nav.site { padding: 0.75rem 1.25rem; }
  .nav-links { display: none; }
  .nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    border-top: 1px solid var(--line);
    align-items: flex-start;
    gap: 1rem;
  }
  .menu-btn { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .quote-form, .quote-info { padding: 1.5rem; }
}
