/* ============================================================
   ADRIAN REID CONSTRUCTION — ARC
   Nassau, Bahamas · Prizmek Web Design Mockup
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --black:    #111111;
  --charcoal: #1C1C1E;
  --dark:     #242424;
  --orange:   #E8600A;
  --orange2:  #c44f06;
  --orange-lt: rgba(232,96,10,0.1);
  --sand:     #F5F0E8;
  --white:    #FFFFFF;
  --muted:    #6B7280;
  --border:   rgba(232,96,10,0.2);
  --border-d: rgba(255,255,255,0.08);
  --radius:   6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--orange);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-badge {
  background: var(--orange);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}

.nav-logo-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}

.nav-logo-text span {
  font-size: 9px;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange2) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--black);
  z-index: 999;
  padding: 20px 5%;
  border-top: 1px solid rgba(232,96,10,0.2);
  flex-direction: column;
  gap: 0;
}
.mobile-menu a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--charcoal);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 5% 80px;
}

/* The signature ARC watermark */
.hero-arc-bg {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(280px, 30vw, 480px);
  font-weight: 900;
  color: rgba(232,96,10,0.06);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* diagonal orange stripe */
.hero-stripe {
  position: absolute;
  top: 0; bottom: 0;
  right: 35%;
  width: 4px;
  background: var(--orange);
  transform: skewX(-8deg);
  opacity: 0.35;
  z-index: 0;
}

.hero-stripe2 {
  position: absolute;
  top: 0; bottom: 0;
  right: 36%;
  width: 1px;
  background: var(--orange);
  transform: skewX(-8deg);
  opacity: 0.15;
  z-index: 0;
}

/* dot grid */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-eyebrow span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--orange);
  display: block;
}

.hero h1 {
  font-size: clamp(58px, 9vw, 128px);
  color: var(--white);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 4px;
}

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

.hero h1 .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.2);
  color: transparent;
}

.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 18px 0 24px;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-orange {
  background: var(--orange);
  color: white;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-orange:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,96,10,0.35); }

.btn-outline-w {
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-w:hover { border-color: var(--orange); color: var(--orange); }

/* hero stats */
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 36px;
}

.h-stat {
  flex: 1;
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.h-stat:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
.h-stat:first-child { padding-left: 0; }

.h-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.h-stat .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

/* ── ORANGE TICKER ── */
.ticker {
  background: var(--orange);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: scroll-ticker 28s linear infinite;
}

.ticker span {
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 24px;
}
.ticker span::before { content: '◆'; margin-right: 24px; opacity: 0.5; }

@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
.section { padding: 90px 5%; }
.section-dark { background: var(--charcoal); }
.section-light { background: var(--sand); }

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--orange); }

.section-title {
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.95;
  margin-bottom: 18px;
  color: var(--black);
}

.section-dark .section-title { color: white; }
.section-light .section-title { color: var(--black); }

.section-sub {
  font-size: 15.5px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 54px;
  font-weight: 300;
}

.section-dark .section-sub { color: rgba(255,255,255,0.5); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.08);
}

.svc-card {
  background: white;
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.svc-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -10px; right: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
}

.svc-card:hover {
  border-bottom-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  z-index: 2;
}

.svc-icon {
  font-size: 32px;
  margin-bottom: 18px;
}

.svc-card h3 {
  font-size: 26px;
  color: var(--black);
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── LICENSED BADGE BAND ── */
.badge-band {
  background: var(--black);
  padding: 30px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid rgba(232,96,10,0.2);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-icon {
  font-size: 28px;
}

.badge-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
}

.badge-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

/* ── PROCESS TIMELINE ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  position: relative;
}

/* connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(232,96,10,0.25);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  position: relative;
}

.process-step h4 {
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ── PORTFOLIO GRID ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.portfolio-item {
  background: var(--dark);
  border-radius: 4px;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.portfolio-item:first-child {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
}

.portfolio-item:hover { transform: scale(1.02); }
.portfolio-item:hover .port-overlay { opacity: 1; }

/* placeholder construction scene */
.port-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 60px;
  color: rgba(255,255,255,0.07);
  font-weight: 900;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #242424 0%, #1a1a1a 100%);
}

.port-placeholder span { font-size: 40px; }

.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,96,10,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.port-overlay-text {
  text-align: center;
  color: white;
}

.port-overlay-text h4 {
  font-size: 22px;
  margin-bottom: 4px;
}

.port-overlay-text span {
  font-size: 12px;
  opacity: 0.8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.port-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.port-label strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  color: white;
  display: block;
}

.port-label span {
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── STATS STRIP ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(232,96,10,0.15);
}

.stat-cell {
  background: var(--black);
  padding: 44px 24px;
  text-align: center;
}

.stat-cell .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 58px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-cell .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}

.why-item-text h4 {
  font-size: 22px;
  color: var(--black);
  margin-bottom: 6px;
}

.why-item-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.why-visual {
  background: var(--charcoal);
  border-radius: 8px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-visual::before {
  content: 'ARC';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 160px;
  font-weight: 900;
  color: rgba(232,96,10,0.06);
  letter-spacing: -0.04em;
}

.why-visual-inner { position: relative; z-index: 2; }

.why-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 100px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.why-big-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.t-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 8px;
  padding: 30px;
  border-bottom: 3px solid var(--orange);
}

.t-stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }

.t-card p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 20px;
}

.t-author strong { display: block; font-size: 14px; font-weight: 600; color: var(--black); }
.t-author span { font-size: 12px; color: var(--muted); }

/* ── SERVICES PAGE ── */
.svc-hero {
  min-height: 40vh;
  background: var(--charcoal);
  display: flex;
  align-items: flex-end;
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
}

.svc-hero::before {
  content: 'SERVICES';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 200px;
  font-weight: 900;
  color: rgba(232,96,10,0.06);
  white-space: nowrap;
  z-index: 0;
}

.svc-hero h1 { font-size: clamp(52px, 8vw, 100px); color: white; position: relative; z-index: 2; }
.svc-hero p { color: rgba(255,255,255,0.5); margin-top: 14px; font-size: 15px; max-width: 500px; position: relative; z-index: 2; }

.svc-detail-list { padding: 80px 5%; }

.svc-detail-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: start;
}

.svc-detail-card:last-child { border-bottom: none; }

.sdc-left { }

.sdc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.15;
  line-height: 1;
}

.sdc-left h3 {
  font-size: 36px;
  color: var(--black);
  margin-top: -8px;
  margin-bottom: 14px;
}

.sdc-icon { font-size: 36px; margin-bottom: 8px; }

.sdc-right p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.sdc-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.sdc-item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13.5px;
  color: #333;
  padding: 9px 12px;
  background: var(--sand);
  border-radius: 4px;
  font-weight: 500;
}

.sdc-item::before { content: '▶'; font-size: 8px; color: var(--orange); }

/* ── CONTACT / QUOTE ── */
.contact-hero {
  min-height: 36vh;
  background: var(--charcoal);
  display: flex;
  align-items: flex-end;
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: 'QUOTE';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 200px;
  font-weight: 900;
  color: rgba(232,96,10,0.05);
  z-index: 0;
}

.contact-hero h1 { font-size: clamp(48px, 7vw, 90px); color: white; position: relative; z-index: 2; }
.contact-hero p { color: rgba(255,255,255,0.5); margin-top: 14px; font-size: 15px; position: relative; z-index: 2; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding: 80px 5%;
  align-items: start;
}

.contact-info h2 { font-size: 42px; margin-bottom: 16px; color: var(--black); }
.contact-info > p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; }

.c-items { display: flex; flex-direction: column; gap: 18px; }

.c-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.c-ic {
  width: 44px; height: 44px;
  background: var(--orange-lt);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.c-item-text strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2px;
  font-weight: 700;
}

.c-item-text a, .c-item-text span {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.c-item-text a:hover { color: var(--orange); }

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.s-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #333;
  transition: all 0.2s;
}
.s-btn:hover { border-color: var(--orange); color: var(--orange); }

/* quote form */
.quote-form-card {
  background: white;
  border-radius: 10px;
  padding: 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 4px solid var(--orange);
}

.quote-form-card h3 { font-size: 36px; margin-bottom: 6px; color: var(--black); }
.quote-form-card > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }

.form-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 7px;
}

input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(0,0,0,0.11);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: white;
  transition: border-color 0.2s;
  outline: none;
}

input:focus, textarea:focus, select:focus { border-color: var(--orange); }
textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  background: var(--orange);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 6px;
}
.form-submit:hover { background: var(--orange2); transform: translateY(-1px); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--orange);
  padding: 72px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: 'ARC';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 300px;
  font-weight: 900;
  color: rgba(0,0,0,0.05);
  white-space: nowrap;
  z-index: 0;
}

.cta-band > * { position: relative; z-index: 2; }

.cta-band h2 { font-size: clamp(40px, 6vw, 78px); color: white; margin-bottom: 14px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 34px; max-width: 480px; margin-left: auto; margin-right: auto; }

.btn-white {
  background: white;
  color: var(--orange);
  padding: 15px 36px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }

/* ── FOOTER ── */
.footer {
  background: var(--black);
  padding: 60px 5% 28px;
  border-top: 2px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 260px;
}

.f-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.f-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  background: #25D366;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.25s;
  animation: popIn 0.6s cubic-bezier(.22,1.5,.36,1) both;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

@keyframes popIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item:first-child { grid-column: 1 / 3; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-detail-card { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:first-child { grid-column: 1; aspect-ratio: 4/3; }
  .contact-layout { grid-template-columns: 1fr; }
  .quote-form-card { padding: 28px 20px; }
  .form-2 { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .h-stat { border-right: none; padding: 0 0 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .h-stat:last-child { border-bottom: none; padding-bottom: 0; }
}
