/* =========================================
   ALD – Archline Designs
   Inspired by Archipelago (archipelago.com.au)
   ========================================= */

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

:root {
  --black:   #0a0a0a;
  --white:   #ffffff;
  --off-white: #f5f4f0;
  --grey:    #8a8a8a;
  --mid-grey: #d4d0c8;
  --accent:  #c8a96e;   /* warm gold */
  --nav-h:   72px;

  --font-sans: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-ui:   'Poppins', 'Helvetica Neue', Arial, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-ui);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

/* =========================================
   CUSTOM CURSOR  —  mix-blend-mode: difference
   Dot is white + difference = inverted colour wherever it sits.
   Dot size scales with proximity to screen centre.
   ========================================= */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;        /* JS overrides this every frame */
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  will-change: left, top, width, height;
}

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1.5px solid #ffffff;
  background: transparent;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.25s;
  will-change: left, top;
}

/* hover state — ring enlarges */
body.cursor-hover #cursor-ring { width: 64px; height: 64px; }

/* =========================================
   NAVIGATION  —  Archipelago-style transparent overlay
   ========================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  z-index: 1000;
  /* subtle gradient so text stays readable over bright sky */
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.32) 0%, transparent 100%);
  transition: background-image 0.4s var(--ease);
}

/* When scrolled past hero — transparent, white text, no box */
#nav.scrolled {
  background-image: none;
  background: transparent;
  box-shadow: none;
}

/* On hover — soft gradient fades in behind the links */
#nav::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: -1;
}
#nav:hover::after { opacity: 1; }

/* Nav links — spread across full width */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  position: relative;
  padding-bottom: 3px;
  transition: opacity 0.25s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4); /* subtle shadow for legibility on light bgs */
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { opacity: 0.7; }
.nav-links a:hover::after { width: 100%; }

/* "Contact" is the last item — no special treatment needed */
.nav-cta {
  /* reset overrides */
  font-family: var(--font-ui) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em !important;
  color: var(--white) !important;
  background: none;
  padding: 0 !important;
  border: none;
}
.nav-cta::after { display: block !important; }
.nav-cta:hover { opacity: 0.7; background: none !important; color: var(--white) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--off-white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--black);
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--grey); }

/* =========================================
   HERO
   ========================================= */
#hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active {
  opacity: 0.6;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

/* Hero logo — top left */
.hero-logo-mark {
  position: absolute;
  top: 88px;
  left: 52px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1.2s 0.3s var(--ease) forwards;
  padding: 20px 24px 24px 0;
}

.hero-logo-img {
  width: min(280px, 30vw);
  height: auto;
  object-fit: contain;
  filter: brightness(10) contrast(10);
  mix-blend-mode: screen;
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Bottom bar — scroll down centred */
.hero-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 52px 44px;
}

/* Scroll Down */
.hero-scroll {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.9s 1.4s var(--ease) forwards;
}

.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.hero-scroll-line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.75);
  transform-origin: left;
  animation: scrollLineH 1.6s 1.8s ease-in-out infinite;
}
@keyframes scrollLineH {
  0%   { transform: scaleX(0); opacity: 1; }
  55%  { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0.15; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); opacity: 1; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   STATEMENT SECTION — sticky scroll-pin, word-by-word fill
   ========================================= */

/* Tall wrapper — gives scroll distance for the pin animation */
#statement {
  background: #ede9e2;
  /* height set by JS based on word count, default fallback */
  height: 400vh;
  position: relative;
}

/* Sticky inner — stays fixed while parent scrolls */
.statement-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10vw;
  text-align: center;
  overflow: hidden;
}

/* The quote text */
.statement-text {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2.6vw, 38px);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  /* words are wrapped in <span class="word"> by JS */
}

/* Each word starts faded, JS transitions to dark */
.statement-text .word {
  display: inline;
  color: rgba(26, 26, 26, 0.1);
  transition: color 0.3s ease;
  white-space: pre-wrap;
}

/* =========================================
   PROJECT SLIDESHOW
   ========================================= */
/* =========================================
   VIDEO REEL
   ========================================= */
#slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
}

.reel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.reel-video.active {
  opacity: 1;
}

.reel-video--rotate {
  transform: rotate(90deg) scale(1.78);
  transform-origin: center center;
}

/* =========================================
   STATS — full-page light
   ========================================= */
#stats {
  background: #f2ede6;   /* warm cream */
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.stats-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.stats-cell {
  padding: 80px 10vw;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* right column — no right border */
.stats-cell--right { border-right: none; }

.stats-num {
  font-family: var(--font-serif);
  font-size: clamp(72px, 10vw, 130px);
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  /* suffix rendered inline via JS */
}

.stats-count {
  display: inline;
}

.stats-lbl {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #888;
}

/* =========================================
   SECTION SHARED
   ========================================= */
.section-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}

.section-title em { font-style: italic; }

.section-body {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
  max-width: 620px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }

/* stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.stagger.in-view > *:nth-child(1)  { opacity:1; transform:none; transition-delay:0s;    }
.stagger.in-view > *:nth-child(2)  { opacity:1; transform:none; transition-delay:0.07s; }
.stagger.in-view > *:nth-child(3)  { opacity:1; transform:none; transition-delay:0.14s; }
.stagger.in-view > *:nth-child(4)  { opacity:1; transform:none; transition-delay:0.21s; }
.stagger.in-view > *:nth-child(5)  { opacity:1; transform:none; transition-delay:0.28s; }
.stagger.in-view > *:nth-child(6)  { opacity:1; transform:none; transition-delay:0.35s; }
.stagger.in-view > *:nth-child(7)  { opacity:1; transform:none; transition-delay:0.42s; }
.stagger.in-view > *:nth-child(8)  { opacity:1; transform:none; transition-delay:0.49s; }
.stagger.in-view > *:nth-child(9)  { opacity:1; transform:none; transition-delay:0.56s; }
.stagger.in-view > *:nth-child(10) { opacity:1; transform:none; transition-delay:0.63s; }
.stagger.in-view > *:nth-child(11) { opacity:1; transform:none; transition-delay:0.70s; }
.stagger.in-view > *:nth-child(12) { opacity:1; transform:none; transition-delay:0.77s; }

/* =========================================
   ABOUT / PHILOSOPHY  — redesigned
   ========================================= */
#about {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* 2×2 photo grid — centred */
.about-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: min(780px, 100%);
}

.about-photo {
  overflow: hidden;
  position: relative;
  height: 300px;
}

.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease);
  display: block;
}
.about-photo:hover img { transform: scale(1.05); }

/* =========================================
   SERVICES  —  scroll-driven marquee rows
   ========================================= */
#services {
  background: var(--off-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}

.services-tag {
  position: absolute;
  top: 48px;
  left: 52px;
  color: rgba(0,0,0,0.4);
}

.services-marquee {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.mq-row {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
  padding: 0 48px;
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

.mq-word {
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  display: inline-block;
  padding: 0 36px;
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

.mq-solid  { color: var(--black); }

.mq-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.3);
}

.mq-sep {
  font-size: clamp(60px, 8vw, 120px);
  color: rgba(0,0,0,0.12);
  line-height: 1;
  flex-shrink: 0;
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
}

/* =========================================
   PROJECTS GRID
   ========================================= */
#sectors {
  padding: 120px 48px;
}

.sectors-intro {
  margin-bottom: 56px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 36px;
}

.proj-tile {
  display: block;
  text-decoration: none;
  cursor: none;
  background: none;
}

.proj-tile--hidden {
  display: none;
}

.proj-tile-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 14px;
}
.proj-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.proj-tile:hover .proj-tile-img img { transform: scale(1.04); }

.proj-tile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proj-tile-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
}

.proj-tile-loc {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--grey);
  font-weight: 300;
}

.proj-tile-placeholder {
  background: #e8e5df;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proj-placeholder-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b0aca4;
}

/* See More button */
.projects-seemore {
  margin-top: 56px;
  text-align: center;
}

.seemore-btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: none;
}
.seemore-btn:hover { opacity: 0.5; }

/* =========================================
   AWARDS & RECOGNITION
   ========================================= */
#awards {
  background: var(--off-white);
  padding: 120px 48px;
  overflow: hidden;
}

#awards .section-title { color: var(--black); margin-bottom: 64px; }
#awards .section-tag { color: var(--black); opacity: 0.55; }

/* Recognition photo groups — horizontal scroll of event clusters */
.recognition-groups {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.recognition-groups::-webkit-scrollbar { display: none; }

.recog-group {
  flex-shrink: 0;
}

.recog-photos {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-bottom: 14px;
}

.recog-photo {
  overflow: hidden;
  height: 320px;
}
.recog-photos--1 .recog-photo { width: 420px; }
.recog-photos--2 .recog-photo { width: 260px; }
.recog-photos--3 .recog-photo { width: 200px; }

.recog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
  display: block;
}
.recog-photo:hover img { transform: scale(1.04); }

.recog-caption {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  padding-top: 2px;
}

/* =========================================
   OUR CLIENTS  —  3-row scroll-driven marquee
   ========================================= */
#empanelled {
  background: var(--off-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}

.empanelled-tag {
  position: absolute;
  top: 48px;
  left: 52px;
  color: rgba(0,0,0,0.4);
}

.clients-marquee {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

#empanelled .mq-word {
  font-size: clamp(32px, 4.5vw, 68px);
}

#empanelled .mq-sep {
  font-size: clamp(20px, 3vw, 44px);
}

/* =========================================
   CLIENTS
   ========================================= */
#clients {
  padding: 120px 48px;
}

.clients-header { margin-bottom: 64px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial {
  padding: 40px 36px;
  background: var(--off-white);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--black);
  line-height: 0.6;
  position: absolute;
  top: 28px; left: 28px;
  opacity: 0.4;
}

.testimonial-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: #333;
  margin-bottom: 28px;
  padding-top: 24px;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}
.testimonial-role {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.08em;
  margin-top: 3px;
}

/* =========================================
   PROCESS
   ========================================= */
#process {
  background: var(--white);
  padding: 56px 48px 48px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#process .section-title { color: var(--black); }
#process .section-tag { color: var(--black); opacity: 0.55; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 28px;
  flex: 1;
}

.process-step {
  padding: 40px 40px;
  position: relative;
  background: var(--off-white);
}

.process-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

.process-name {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.process-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: invert(1) brightness(0);
}

.process-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--grey);
}

/* =========================================
   CONTACT
   ========================================= */
#contact {
  padding: 100px 48px 120px;
  background: var(--white);
}

.contact-inner {
  max-width: 960px;
}

.contact-inner .section-title {
  margin-bottom: 64px;
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left {}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.contact-block {
  padding: 40px 32px 40px 0;
}

.contact-right {
  padding-top: 8px;
  border-left: 1px solid rgba(0,0,0,0.1);
  padding-left: 64px;
}

.contact-work-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--black);
  margin-top: 16px;
}

.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 56px;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  color: var(--black);
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: none;
}
.contact-social-btn:hover { opacity: 0.45; }

.contact-social-btn svg {
  width: 28px; height: 28px;
  fill: currentColor;
}

.contact-item-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}

.contact-item-value {
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.75;
}
.contact-item-value a { color: var(--black); transition: opacity 0.2s; }
.contact-item-value a:hover { opacity: 0.5; }

.btn-submit {
  align-self: flex-start;
  margin-top: 12px;
  padding: 16px 44px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--black);
  cursor: none;
  transition: background 0.25s, color 0.25s;
}
.btn-submit:hover { background: transparent; color: var(--black); }

/* =========================================
   FOOTER
   ========================================= */
#footer {
  background: var(--off-white);
  padding: 64px 48px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.footer-brand .logo-img {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0);
}

.footer-brand .logo-ald {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 2px;
}
.footer-brand .logo-full {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey);
  max-width: 260px;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--black); }

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

.footer-copy {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.06em;
}

.footer-socials {
  display: flex;
  gap: 24px;
}
.footer-socials a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--black); }

/* =========================================
   DIVIDER LINE
   ========================================= */
.section-divider {
  display: none;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .mq-word { font-size: clamp(40px, 6vw, 90px); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  #about { grid-template-columns: 1fr; }
  .about-img { height: 420px; }
  .contact-columns { grid-template-columns: 1fr; gap: 48px; }
  .contact-right { border-left: none; padding-left: 0; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 40px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card.featured { grid-column: span 1; }
  .project-card.featured .project-card-img { height: 280px; }
  .sector-desc { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .mq-word { font-size: clamp(32px, 5vw, 70px); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  #nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  #hero { padding: 0; }
  .hero-logo-img { width: min(300px, 72vw); }
  .hero-bottom-bar { padding: 0 24px 36px; }

  #stats { padding: 20px 24px; flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid #2a2a2a; }

  #about, #services, #sectors, #awards, #clients, #contact, #process, #empanelled {
    padding-left: 24px;
    padding-right: 24px;
  }
  .sectors-intro, .sector-tabs, .sector-panels { padding-left: 24px; padding-right: 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .emp-item { flex: 0 0 50%; }
  #stats .stats-inner { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .stat-item { flex: 0 0 100%; }
  .process-steps { grid-template-columns: 1fr; }
  .emp-item { flex: 0 0 100%; }
}
