/* ================================================================
   WOOLF ENGINEERING & SURVEYING — REDESIGN 2026
   Design language: Precision · Trust · Integrity
   Palette: Deep navy, steel blue, warm white, charcoal, gold accent
   ================================================================ */


/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #152338;
  --navy-light: #1e3a5f;
  --steel:      #2a5f8f;
  --steel-light:#3a7cbf;
  --gold:       #c09b4f;
  --gold-light: #d4af6a;
  --white:      #ffffff;
  --off-white:  #f5f6f8;
  --grey-100:   #eaedf1;
  --grey-200:   #d0d6de;
  --grey-400:   #8a96a4;
  --grey-600:   #4a5568;
  --charcoal:   #1a2332;
  --text-dark:  #0d1b2a;
  --text-body:  #2d3748;
  --text-muted: #6b7a90;

  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm:  0 2px 8px rgba(13,27,42,0.12);
  --shadow-md:  0 8px 32px rgba(13,27,42,0.18);
  --shadow-lg:  0 20px 60px rgba(13,27,42,0.25);

  --max-w:      1200px;
  --gutter:     clamp(1.25rem, 4vw, 3rem);
  --section-py: clamp(4rem, 8vw, 7rem);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::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-body);
  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 { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── UTILITIES ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-title--light { color: var(--white); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 56ch;
  line-height: 1.75;
  margin-top: 1rem;
}
.section-desc--light { color: rgba(255,255,255,0.72); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,155,79,0.35);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn svg, .btn i { font-size: 1rem; }

/* ── HEADER / NAV ────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
#site-header.at-top { background: transparent; }
#site-header.light-header { background: var(--navy); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.1rem;
}
.logo img { height: 52px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 2px; left: 0.9rem; right: 0.9rem;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 0.5rem; z-index: 200;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  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 menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: var(--navy);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .close-btn {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 2rem; color: var(--white); background: none;
  line-height: 1;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh; min-height: 600px; max-height: 900px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute; inset: 0;
  display: flex;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-slide.active img { transform: scale(1); }

/* Gradient overlays */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,0.88) 0%,
    rgba(13,27,42,0.55) 55%,
    rgba(13,27,42,0.15) 100%
  );
}
/* Diagonal accent bar */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom right, transparent 50%, var(--white) 50%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  width: 40px; height: 2px; background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-title span { color: var(--gold); }
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Slider dots */
.hero-dots {
  position: absolute; bottom: 5rem; right: var(--gutter);
  z-index: 3; display: flex; flex-direction: column; gap: 0.6rem;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
  border: none;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ── SERVICES STRIP ──────────────────────────────────────────── */
.services-strip {
  background: var(--navy);
  padding-block: 1.5rem;
}
.services-strip-inner {
  display: flex; align-items: center;
  justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.strip-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 2rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { color: var(--gold); }
.strip-item i { color: var(--gold); font-size: 1rem; }

/* ── WHY SECTION ─────────────────────────────────────────────── */
.why-section {
  padding-block: var(--section-py);
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.why-reasons {
  display: flex; flex-direction: column; gap: 2rem;
}
.reason-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.reason-number {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
.reason-content h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}
.reason-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.why-image-stack {
  position: relative;
}
.why-image-stack .img-main {
  width: 100%; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover;
}
.why-image-stack .img-accent {
  position: absolute;
  bottom: -2rem; left: -2rem;
  width: 55%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 4/3; object-fit: cover;
}
.why-badge {
  position: absolute;
  top: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.why-badge .num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.why-badge .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── SERVICES SECTION ────────────────────────────────────────── */
.services-section {
  padding-block: var(--section-py);
  background: var(--white);
}
.services-header { margin-bottom: 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--grey-100);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
}
.service-card-body { padding: 1.5rem; }
.service-card-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold); font-size: 1.2rem;
}
.service-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.service-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--steel);
  margin-top: 1rem;
  transition: var(--transition);
}
.service-card-link:hover { color: var(--gold); gap: 0.7rem; }

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding-block: 3.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── STAND OUT SECTION ───────────────────────────────────────── */
.standout-section {
  padding-block: var(--section-py);
  background: var(--off-white);
}
.standout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}
.standout-image {
  position: relative;
}
.standout-image img {
  width: 100%; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover;
}
.standout-image::before {
  content: '';
  position: absolute; inset: -1.5rem 0 0 -1.5rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  z-index: -1;
}
.standout-list {
  display: flex; flex-direction: column; gap: 1.25rem;
  margin-top: 2rem;
}
.standout-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.standout-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.standout-item i {
  color: var(--gold); font-size: 1.2rem; flex-shrink: 0;
  margin-top: 0.1rem;
}
.standout-item h4 {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.standout-item p {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
}

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  padding-block: 5rem;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,155,79,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.cta-text p {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
}
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding-top: 4.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo img { height: 48px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: 0.9rem; color: rgba(255,255,255,0.55);
  line-height: 1.75; max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  margin-bottom: 0.85rem;
}
.footer-contact-item i {
  color: var(--gold); font-size: 0.9rem;
  margin-top: 0.15rem; flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.55;
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  padding-top: 120px; padding-bottom: 4rem;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(192,155,79,0.08) 0%, transparent 60%);
}
.page-hero-grid {
  position: relative; z-index: 1;
}
.page-hero-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.page-hero-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--gold);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; color: var(--white);
  line-height: 1.0; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.68);
  max-width: 54ch; line-height: 1.7;
}
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  margin-bottom: 1.5rem;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }

/* ── SERVICES PAGE ───────────────────────────────────────────── */
.services-page-section { padding-block: var(--section-py); }
.services-page-section:nth-child(even) { background: var(--off-white); }

.svc-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
  padding-block: 4rem;
  border-bottom: 1px solid var(--grey-100);
}
.svc-block:last-child { border-bottom: none; }
.svc-block.reverse { }
.svc-block.reverse .svc-img { order: -1; }

.svc-img img {
  width: 100%; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3; object-fit: cover;
}
.svc-content .svc-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(192,155,79,0.12);
  padding: 0.3rem 0.75rem; border-radius: 100px;
  margin-bottom: 1rem;
}
.svc-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.1; margin-bottom: 1rem;
}
.svc-content .intro-text {
  font-size: 1rem; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 1.75rem;
}
.svc-list {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-bottom: 2rem;
}
.svc-list-item {
  display: flex; gap: 0.85rem; align-items: flex-start;
}
.svc-list-item i {
  color: var(--gold); font-size: 0.9rem; flex-shrink: 0;
  margin-top: 0.3rem;
}
.svc-list-item div { }
.svc-list-item strong {
  display: block; font-size: 0.95rem; color: var(--navy);
  font-weight: 600; margin-bottom: 0.15rem;
}
.svc-list-item p {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6;
}

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-intro {
  padding-block: var(--section-py);
  background: var(--off-white);
}
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-intro-img {
  position: relative;
}
.about-intro-img img {
  width: 100%; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); aspect-ratio: 3/2; object-fit: cover;
}
.about-intro-img::after {
  content: '';
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 60%; height: 60%;
  background: linear-gradient(135deg, var(--navy), var(--steel));
  border-radius: var(--radius-md);
  z-index: -1;
}
.about-intro-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy); font-weight: 700; margin-bottom: 1.25rem;
}
.about-intro-content p {
  font-size: 1rem; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 1rem;
}

.owner-section {
  padding-block: var(--section-py);
  background: var(--white);
}
.owner-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 4rem; align-items: start;
}
.owner-img-wrap {
  position: sticky; top: 120px;
}
.owner-img-wrap img {
  width: 100%; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.owner-name {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700; color: var(--navy);
  margin-top: 1.25rem;
}
.owner-title {
  font-size: 0.88rem; color: var(--text-muted);
  font-weight: 500; letter-spacing: 0.04em;
  margin-top: 0.25rem;
}
.owner-content h3 {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 700; color: var(--navy);
  margin-bottom: 1rem; margin-top: 2rem;
}
.owner-content h3:first-child { margin-top: 0; }
.owner-content p {
  font-size: 1rem; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 1rem;
}
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem;
}
.value-card {
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold);
}
.value-card h4 {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.3rem;
}
.value-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ── CAREERS PAGE ────────────────────────────────────────────── */
.careers-section { padding-block: var(--section-py); background: var(--off-white); }
.careers-inner {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 4rem; align-items: start;
}
.openings-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.openings-box h2 {
  font-family: var(--font-head);
  font-size: 1.75rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.5rem;
}
.openings-box .subtitle {
  font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem;
}
.no-positions {
  text-align: center; padding: 3rem 2rem;
  border: 2px dashed var(--grey-200);
  border-radius: var(--radius-md);
}
.no-positions i { font-size: 2.5rem; color: var(--grey-400); margin-bottom: 1rem; }
.no-positions h3 {
  font-family: var(--font-head); font-size: 1.3rem;
  color: var(--navy); margin-bottom: 0.5rem;
}
.no-positions p { font-size: 0.9rem; color: var(--text-muted); }

.benefits-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}
.benefits-box h3 {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 700; color: var(--white);
  margin-bottom: 1.5rem;
}
.benefit-item {
  display: flex; gap: 0.85rem; align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-item i { color: var(--gold); font-size: 1.1rem; }
.benefit-item span { color: rgba(255,255,255,0.8); font-size: 0.95rem; font-weight: 500; }

.apply-box {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 1.5rem;
  border: 1px solid var(--grey-100);
}
.apply-box h4 {
  font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.5rem;
}
.apply-box p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.apply-box a.email-link {
  color: var(--steel); font-weight: 600; text-decoration: underline;
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-section { padding-block: var(--section-py); background: var(--off-white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.5rem); font-weight: 700;
  color: var(--navy); margin-bottom: 0.5rem;
}
.contact-info .intro { font-size: 1rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--navy); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.contact-card h4 {
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.35rem;
}
.contact-card p, .contact-card a {
  font-size: 0.95rem; color: var(--text-body); font-weight: 500;
}
.contact-card a:hover { color: var(--steel); text-decoration: underline; }

.map-container {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-lg); height: 450px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1; transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-stack { max-width: 560px; margin-inline: auto; }
  .standout-grid { grid-template-columns: 1fr; }
  .standout-image { max-width: 560px; }
  .svc-block { grid-template-columns: 1fr; }
  .svc-block.reverse .svc-img { order: 0; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .owner-grid { grid-template-columns: 1fr; }
  .owner-img-wrap { position: static; max-width: 380px; }
  .careers-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .services-strip-inner { flex-direction: column; }
  .hero::after { display: none; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .why-image-stack .img-accent { display: none; }
  .why-badge { top: 1rem; right: 1rem; }
  .values-grid { grid-template-columns: 1fr; }
  .map-container { height: 300px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero-title { font-size: 2.4rem; }
}
