/* ============================================================
   WOOLF ENGINEERING & SURVEYING — Modern Design System
   Clean, authoritative, engineering-grade aesthetics
   ============================================================ */

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

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --navy:        #0d1b2a;
  --navy-mid:    #1a2e45;
  --navy-light:  #243d56;
  --accent:      #c8922a;   /* gold — precision & quality */
  --accent-dark: #a67520;
  --white:       #ffffff;
  --off-white:   #f5f6f8;
  --gray-100:    #eef0f3;
  --gray-200:    #dde1e7;
  --gray-400:    #8d9aab;
  --gray-600:    #4a5568;
  --gray-800:    #1e2530;
  --text-dark:   #1a2030;
  --text-mid:    #3d4a5c;
  --text-light:  #6b7a8d;

  /* Typography */
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Barlow Condensed', 'Inter', sans-serif;

  /* Spacing */
  --max-w:        1200px;
  --section-py:   90px;
  --section-px:   24px;

  /* Transitions */
  --trans: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Utility --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section-py { padding: var(--section-py) 0; }
.section-py-sm { padding: 60px 0; }

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

/* --- Eyebrow Label --- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* --- Headings --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }

p { color: var(--text-mid); line-height: 1.75; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,27,42,0.2);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,146,42,0.2);
  transition: box-shadow var(--trans);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 var(--section-px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.header-logo img {
  height: 46px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color var(--trans);
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--trans);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 16px;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--trans);
  border-radius: 1px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 40px 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--trans);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 28px; }

/* ============================================================
   HERO / SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background: var(--navy);
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

/* Dark overlay */
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,27,42,0.82) 0%,
    rgba(13,27,42,0.55) 50%,
    rgba(13,27,42,0.3) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-text {
  max-width: 660px;
  padding: 0 var(--section-px);
  margin: 0 auto 0 calc((100vw - var(--max-w)) / 2 + var(--section-px));
}

@media (max-width: 1200px) {
  .hero-text { margin-left: var(--section-px); }
}

.hero-text .eyebrow { color: var(--accent); }

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slide indicators */
.hero-dots {
  position: absolute;
  bottom: 36px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--trans);
  border: none;
}
.hero-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px; right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.3);
}

/* ============================================================
   SERVICE STRIP (below hero)
   ============================================================ */
.service-strip {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(200,146,42,0.15);
}

.service-strip-inner {
  display: flex;
  align-items: stretch;
}

.strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--trans), color var(--trans);
  cursor: default;
  text-decoration: none;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover {
  background: rgba(200,146,42,0.12);
  color: var(--white);
}

.strip-item svg {
  flex-shrink: 0;
  color: var(--accent);
  width: 22px; height: 22px;
}

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */
.why-section {
  background: var(--off-white);
}

.why-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.why-header h2 { color: var(--text-dark); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.why-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: var(--trans);
}
.why-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  z-index: 1;
}

.why-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(200,146,42,0.12);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--trans);
}
.why-card:hover .why-number {
  color: rgba(200,146,42,0.25);
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.why-card p { font-size: 0.94rem; }

/* ============================================================
   SPECIALTIES SECTION
   ============================================================ */
.specialties-section {
  background: var(--white);
}

.specialties-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.specialty-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.specialty-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.specialty-card:hover img { transform: scale(1.04); }

.specialty-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.25) 60%, transparent 100%);
}

.specialty-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  z-index: 1;
}
.specialty-label h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.specialty-label p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.5;
}

.specialty-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 10px;
  transition: gap var(--trans);
}
.specialty-card:hover .specialty-link { gap: 10px; }

/* ============================================================
   STAND OUT SECTION
   ============================================================ */
.standout-section {
  background: var(--navy);
  color: var(--white);
}

.standout-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.standout-content h2 { color: var(--white); margin-bottom: 20px; }
.standout-content p { color: rgba(255,255,255,0.72); margin-bottom: 32px; }

.standout-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
}
.stat-box .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.standout-image {
  position: relative;
}
.standout-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 3px;
}

.standout-image::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--accent);
  border-radius: 3px;
  opacity: 0.35;
  z-index: -1;
}

/* ============================================================
   HIRE BANNER
   ============================================================ */
.hire-banner {
  background: var(--accent);
  padding: 56px 0;
}

.hire-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.hire-text h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); }
.hire-text p { color: rgba(255,255,255,0.85); margin-top: 6px; font-size: 1rem; }

.hire-inner .btn-outline {
  border-color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--gray-100);
  text-align: center;
}

.cta-box {
  max-width: 640px;
  margin: 0 auto;
}

.cta-box h2 { margin-bottom: 16px; }
.cta-box p { margin-bottom: 36px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 120px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: rgba(200,146,42,0.05);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--accent); display: block; margin-bottom: 10px; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero .lead {
  color: rgba(255,255,255,0.7);
  font-size: 1.08rem;
  max-width: 580px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.value-section { background: var(--off-white); }

.value-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.value-content h2 { margin-bottom: 16px; }
.value-content p { margin-bottom: 24px; }

.value-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* Service Categories */
.services-section { background: var(--white); }
.services-section .container > h2 {
  margin-bottom: 12px;
}
.section-intro { max-width: 620px; margin-bottom: 56px; }

.service-block {
  padding: 56px 0;
  border-top: 1px solid var(--gray-200);
}
.service-block:first-of-type { border-top: none; padding-top: 0; }

.service-block-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.service-block-header h3 { color: var(--navy); }

.service-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--gray-100);
  border-radius: 3px;
  border-left: 3px solid var(--accent);
  transition: var(--trans);
}
.service-item:hover {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateX(3px);
}

.service-item-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  color: var(--accent);
}

.service-item h4 { margin-bottom: 6px; color: var(--navy); }
.service-item p { font-size: 0.875rem; line-height: 1.6; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.company-section { background: var(--off-white); }

.company-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.company-content h2 { margin-bottom: 16px; }
.company-content p { margin-bottom: 16px; }
.company-content p:last-of-type { margin-bottom: 0; }

.company-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.owner-section { background: var(--white); }

.owner-top {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
  margin-bottom: 56px;
}

.owner-content h2 { margin-bottom: 8px; }
.owner-content .owner-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.owner-content p { margin-bottom: 16px; }

.owner-photo {
  position: relative;
}
.owner-photo img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}
.owner-photo::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 80%; height: 60%;
  background: var(--navy);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.08;
}

.owner-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quote-block {
  padding: 32px;
  background: var(--gray-100);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 3px 3px;
}
.quote-block p { font-style: italic; font-size: 0.94rem; }

/* Values strip */
.values-strip {
  background: var(--navy);
  padding: 60px 0;
}

.values-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.value-item {
  padding: 36px 32px;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.value-item:last-child { border-right: none; }
.value-item h4 { color: var(--accent); margin-bottom: 8px; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.03em; }
.value-item p { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.positions-section { background: var(--off-white); }

.positions-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }

.no-positions {
  text-align: center;
  padding: 64px 32px;
  background: var(--white);
  border: 1px dashed var(--gray-200);
  border-radius: 4px;
  max-width: 500px;
  margin: 0 auto 56px;
}
.no-positions h3 { color: var(--gray-400); margin-bottom: 10px; }
.no-positions p { font-size: 0.95rem; }

.apply-section { background: var(--white); }

.apply-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.apply-content h2 { margin-bottom: 16px; }
.apply-content p { margin-bottom: 20px; }

.apply-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  padding: 14px 20px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  transition: var(--trans);
  margin-top: 8px;
}
.apply-email:hover { background: var(--gray-200); }

.benefits-box {
  background: var(--navy);
  padding: 40px;
  border-radius: 4px;
}
.benefits-box h3 { color: var(--white); margin-bottom: 28px; }

.benefits-list { display: flex; flex-direction: column; gap: 16px; }
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9rem;
}

.benefit-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg { width: 16px; height: 16px; color: var(--white); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--off-white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 { margin-bottom: 28px; }

.contact-detail {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-detail:last-of-type { border-bottom: none; }

.contact-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--accent); }

.contact-detail-text h4 { margin-bottom: 4px; color: var(--navy); }
.contact-detail-text a { color: var(--text-mid); transition: color var(--trans); }
.contact-detail-text a:hover { color: var(--accent); }
.contact-detail-text p { font-size: 0.94rem; }

.contact-form-box {
  background: var(--white);
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.contact-form-box h3 { margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

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

.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 0.95rem; }

/* Map */
.map-section { height: 420px; }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(200,146,42,0.2);
}

.footer-upper {
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img { height: 42px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.75; max-width: 280px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.5;
  transition: color var(--trans);
}
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .specialties-grid { grid-template-columns: 1fr 1fr; }
  .standout-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-upper { grid-template-columns: 1fr 1fr; gap: 36px; }

  .owner-top { grid-template-columns: 1fr; }
  .owner-photo { max-width: 340px; }
  .owner-quotes { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }

  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-text { margin-left: 0; padding: 0 20px; }
  .hero { max-height: 100vh; }

  .service-strip-inner { flex-direction: column; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .strip-item:last-child { border-bottom: none; }

  .why-grid { grid-template-columns: 1fr; gap: 2px; }
  .why-card { padding: 32px 24px; }

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

  .hire-inner { flex-direction: column; gap: 24px; text-align: center; }

  .value-inner,
  .company-inner,
  .apply-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .service-items { grid-template-columns: 1fr; }
  .service-block-header { flex-direction: column; }

  .values-strip-inner { grid-template-columns: 1fr; gap: 2px; }

  .standout-stats { grid-template-columns: 1fr 1fr; }

  .footer-upper { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .form-grid-2 { grid-template-columns: 1fr; }

  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .cta-btns { flex-direction: column; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .standout-stats { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px; }
  .benefits-box { padding: 28px 24px; }
}
