/* ============================================================
   HAWK DEVELOPMENT — Brand Refresh
   ============================================================ */

/* ── Brand Fonts ────────────────────────────────────────────── */
@font-face {
  font-family: 'Microgme';
  src: url('../fonts/MICROGME.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Microgme';
  src: url('../fonts/MICROGBE.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --navy:         #072249;   /* brand dark navy */
  --steel:        #345372;   /* brand steel blue */
  --steel-light:  #4a6f94;   /* lightened for dark bg */
  --steel-glow:   rgba(52,83,114,0.18);
  --steel-border: rgba(52,83,114,0.35);

  /* Page backgrounds — dark with subtle navy tint */
  --black:        #04070e;
  --dark:         #060c18;
  --dark-2:       #08101f;
  --dark-3:       #0b1526;
  --card:         #0e1b2e;
  --card-2:       #111f34;

  /* Text */
  --white:        #eef1f5;
  --grey:         #8899aa;
  --grey-dim:     #3d5068;

  /* Borders */
  --border:       rgba(255,255,255,0.06);
  --border-2:     rgba(255,255,255,0.11);

  /* Misc */
  --r:            8px;
  --r-lg:         16px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.35);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.65);
  --t:            0.3s ease;
  --font:         'Outfit', sans-serif;
  --font-display: 'Microgme', 'Outfit', sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Type helpers ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub { margin: 0 auto; }

.body-text {
  font-size: 0.975rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 18px;
}

.rule-short {
  width: 40px;
  height: 2px;
  background: var(--steel);
  margin: 24px 0 28px;
  border-radius: 2px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r);
  transition: all var(--t);
  white-space: nowrap;
}

.btn-gold {
  background: var(--steel);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--steel-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(52,83,114,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--steel);
  color: var(--steel);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 28px 0;
  transition: background var(--t), padding var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(6,8,14,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 40px;
  width: auto;
  /* Invert to white for dark nav background */
  filter: brightness(0) invert(1);
  transition: opacity var(--t);
}
.nav-logo:hover .logo-img { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey);
  border-radius: var(--r);
  transition: color var(--t), background var(--t);
}
.nav-link { color: rgba(238,241,245,0.72); }
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-link.active { color: rgba(238,241,245,0.72); }

.nav-cta {
  margin-left: 12px;
  padding: 9px 22px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--steel);
  border-radius: var(--r);
  transition: all var(--t);
}
.nav-cta:hover {
  background: var(--steel-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(52,83,114,0.4);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 8px;
  box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--grey);
  border-radius: var(--r);
  transition: all var(--t);
}
.dropdown li a:hover { color: var(--steel); background: var(--steel-glow); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  overflow: hidden;
}

/* ── Slides ── */
.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-bg {
  position: absolute;
  inset: 0;
}
.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.08);
  transition: transform 7s ease;
}
.slide.active .slide-bg img {
  transform: scale(1.18);
}
.slide-bg-placeholder {
  background: linear-gradient(135deg, #0d1424 0%, #111d35 100%);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,8,14,0.70) 0%,
    rgba(6,8,14,0.30) 45%,
    rgba(6,8,14,0.05) 100%
  );
}

/* ── Slide content ── */
.slide-content {
  position: absolute;
  bottom: 110px;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.9s ease 0.4s, opacity 0.9s ease 0.4s;
}
.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 16px;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 620px;
}
.slide-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--steel);
}

.slide-rule {
  width: 40px;
  height: 2px;
  background: var(--steel);
  margin-bottom: 24px;
  border-radius: 2px;
}

.slide-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 13px 28px;
  border-radius: var(--r);
  transition: all var(--t);
}
.slide-link:hover {
  background: var(--steel);
  border-color: var(--steel);
  color: #000;
  gap: 14px;
}
.slide-link .arrow {
  transition: transform var(--t);
}
.slide-link:hover .arrow {
  transform: translateX(4px);
}

/* ── Branding overlay ── */
.hero-brand {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 3;
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ── Controls ── */
.carousel-controls {
  position: absolute;
  bottom: 44px;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 4;
}

.carousel-prev,
.carousel-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  flex-shrink: 0;
}
.carousel-prev svg,
.carousel-next svg { width: 18px; height: 18px; }
.carousel-prev:hover,
.carousel-next:hover {
  background: var(--steel);
  border-color: var(--steel);
  color: #000;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}
.dot.active {
  width: 28px;
  border-radius: 3px;
  background: var(--steel);
}

/* ── Progress bar ── */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 4;
}
.carousel-progress-bar {
  height: 100%;
  background: var(--steel);
  width: 0%;
  transition: width linear;
}

/* ── Scroll hint ── */
.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 56px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(74,111,148,0.8), transparent);
  animation: pulse 2s ease infinite;
}
.hero-scroll span {
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-dim);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .slide-content { bottom: 120px; padding: 0 24px; }
  .carousel-controls { padding: 0 24px; bottom: 36px; }
  .hero-brand { display: none; }
  .hero-scroll { display: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-bar {
  background: var(--navy);
  border-top: 1px solid rgba(52,83,114,0.4);
  border-bottom: 1px solid rgba(52,83,114,0.4);
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0 20px;
  white-space: nowrap;
}
.marquee-track .dot {
  color: var(--steel);
  padding: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 130px 0;
}
.about-text {
  max-width: 780px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-left { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--steel);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(7,34,73,0.6);
}
.badge-est {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1;
}
.badge-year {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.pillar-item {}
.pillar-num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--steel);
  margin-bottom: 8px;
}
.pillar-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.5;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-inner {
  display: flex;
  align-items: stretch;
}
.stat-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 56px 20px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 24px 0;
}
.stat-n {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--steel);
  line-height: 1;
}
.stat-l {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-dim);
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects {
  padding: 130px 0;
  background: var(--black);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--steel-border);
}

.project-img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--dark-3);
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-img img { transform: scale(1.04); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,8,14,0.5) 0%, transparent 60%);
}
.project-img.empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-coming {
  text-align: center;
}
.coming-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-dim);
  border: 1px solid var(--border-2);
  border-radius: 4px;
  padding: 6px 14px;
}

.project-body {
  padding: 28px;
}
.project-location {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}
.project-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.project-desc {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  transition: gap var(--t), opacity var(--t);
}
/* Stretch link to cover entire card */
.project-link::after {
  content: '';
  position: absolute;
  inset: 0;
}
.project-link:hover { opacity: 0.75; gap: 10px; }

/* Project type tag (pill inside card) */
.project-type-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-light);
  border: 1px solid var(--steel-border);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

/* SF / unit count */
.project-sf {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.project-status-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
  background: rgba(180,30,30,0.13);
  color: #c94040;
  border: 1px solid rgba(180,30,30,0.30);
}
.project-status-badge.construction {
  background: rgba(201,160,40,0.15);
  color: #c9a028;
  border-color: rgba(201,160,40,0.35);
}
.project-status-badge.complete {
  background: rgba(46,139,87,0.15);
  color: #4caf7d;
  border-color: rgba(46,139,87,0.35);
}

/* No-image placeholder card */
.project-img.no-img {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--card-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-type-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-dim);
  border: 1px solid var(--border-2);
  padding: 7px 16px;
  border-radius: 4px;
}

/* Filter tabs */
.proj-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.proj-filter {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--r);
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  transition: all var(--t);
}
.proj-filter:hover { color: var(--white); border-color: var(--steel-border); }
.proj-filter.active {
  background: var(--steel);
  border-color: var(--steel);
  color: var(--white);
}

/* Hide filtered-out cards */
.project-card.hidden {
  display: none;
}

/* Wide dropdown for projects nav */
.dropdown-wide {
  min-width: 240px;
  max-height: 70vh;
  overflow-y: auto;
}
.dropdown-group-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 10px 14px 4px;
  pointer-events: none;
}
.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 10px;
  pointer-events: none;
}

/* ============================================================
   IMAGE BREAK
   ============================================================ */
.image-break {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.image-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,8,14,0.72);
}
.image-break-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-break-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  line-height: 1.45;
  max-width: 720px;
  padding: 0 40px;
}

/* ============================================================
   OFFERINGS
   ============================================================ */
.offerings {
  padding: 130px 0;
  background: var(--dark);
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.offering {
  background: var(--dark);
  padding: 44px 36px;
  transition: background var(--t);
}
.offering:hover { background: var(--dark-2); }
.offering-num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--steel);
  margin-bottom: 16px;
}
.offering-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.offering-text {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.72;
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  padding: 130px 0;
  background: var(--black);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--steel-border);
}
.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dark-3);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--steel);
  background: linear-gradient(135deg, #0e1220 0%, #161e30 100%);
  letter-spacing: 0.04em;
}
.team-body {
  padding: 24px 24px 28px;
  border-top: 1px solid var(--border);
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.team-title {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 130px 0;
  background: var(--dark-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
  align-items: start;
}
.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-detail {}
.detail-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 6px;
}
.detail-val {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.65;
}
.detail-val a { color: var(--grey); transition: color var(--t); }
.detail-val a:hover { color: var(--steel); }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey);
  transition: color var(--t), gap var(--t);
}
.social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--steel);
  transition: color var(--t);
}
.social-link:hover { color: var(--white); gap: 12px; }
.social-link:hover .social-icon { color: var(--steel-light); }

/* Form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-dim);
}
.field input,
.field select,
.field textarea {
  background: var(--dark-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--grey-dim); }
.field select { appearance: none; color: var(--grey); cursor: pointer; }
.field select option { background: var(--card); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px var(--steel-glow);
}
.field textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
}
.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  opacity: 0.9;
}
.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--grey-dim);
  margin: 12px 0 18px;
}
.footer-addr {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 8px;
}
.footer-phone a {
  font-size: 0.875rem;
  color: var(--grey);
  transition: color var(--t);
}
.footer-phone a:hover { color: var(--steel); }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 20px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 0.875rem;
  color: var(--grey);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--white); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey);
  transition: color var(--t);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.footer-social:hover { color: var(--steel-light); }

.footer-hours {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.65;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--grey-dim);
  letter-spacing: 0.04em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-left { max-width: 520px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-inner { flex-wrap: wrap; }
  .stat-col { flex: 0 0 calc(33.333% - 1px); }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-container { padding: 0 24px; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6,8,14,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 1000;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.1rem; padding: 14px 28px; }
  .nav-cta { font-size: 0.9rem; padding: 14px 28px; }
  .hamburger { display: flex; }

  .hero { align-items: center; padding-bottom: 0; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-scroll { display: none; }

  .projects-grid,
  .offerings-grid,
  .team-grid { grid-template-columns: 1fr; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .image-break { height: 280px; }
  .image-break-quote { font-size: 1.3rem; }

  .stat-col { flex: 0 0 50%; }

  .about,
  .projects,
  .offerings,
  .team,
  .contact { padding: 88px 0; }
  .section-header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .stat-col { flex: 0 0 100%; }
}

/* =====================================================
   MAP SECTION
   ===================================================== */
.map-section {
  padding: 100px 0 0;
}
.map-section .section-header {
  margin-bottom: 48px;
}

#project-map {
  width: 100%;
  height: 580px;
}

/* ── Custom marker ──────────────────────────────────── */
.hm-pin {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hm-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid;
  background: rgba(7,34,73,0.75);
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}
.hm-pin:hover .hm-ring {
  transform: scale(1.25);
  box-shadow: 0 0 14px rgba(201,160,40,0.45);
}
.hm-pin:hover .hm-dot {
  transform: scale(1.2);
}

/* ── Leaflet popup dark theme ───────────────────────── */
.leaflet-popup-content-wrapper {
  background: #0c1322 !important;
  border: 1px solid rgba(52,83,114,0.45) !important;
  border-radius: 6px !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.7) !important;
  padding: 0 !important;
}
.leaflet-popup-tip-container { display: none; }
.leaflet-popup-close-button {
  color: rgba(255,255,255,0.4) !important;
  font-size: 18px !important;
  padding: 8px 10px !important;
  top: 2px !important;
  right: 2px !important;
}
.leaflet-popup-close-button:hover { color: #fff !important; }
.leaflet-popup-content { margin: 0 !important; }

/* ── Popup card ─────────────────────────────────────── */
.hm-popup {
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Outfit', sans-serif;
}
.hm-popup-type {
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}
.hm-popup-name {
  font-size: 0.975rem;
  font-weight: 600;
  color: #eef1f5;
  line-height: 1.25;
  margin: 0 0 4px;
}
.hm-popup-addr {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin: 0 0 8px;
}
.hm-popup-status {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hm-popup-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a028;
  border: 1px solid rgba(201,160,40,0.35);
  border-radius: 3px;
  padding: 7px 14px;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.hm-popup-link:hover {
  background: rgba(201,160,40,0.12);
  color: #dbb940;
}

/* ── Leaflet attribution ────────────────────────────── */
.leaflet-control-attribution {
  background: rgba(6,8,14,0.75) !important;
  color: rgba(255,255,255,0.35) !important;
  font-size: 10px !important;
}
.leaflet-control-attribution a { color: rgba(255,255,255,0.45) !important; }
.leaflet-control-zoom a {
  background: rgba(12,19,34,0.9) !important;
  border-color: rgba(52,83,114,0.4) !important;
  color: rgba(255,255,255,0.7) !important;
}
.leaflet-control-zoom a:hover {
  background: rgba(52,83,114,0.5) !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  #project-map { height: 440px; }
  .map-section { padding: 80px 0 0; }
}
