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

:root {
  --orange: #E8722A;
  --orange-dark: #C45E1A;
  --black: #0D0D0D;
  --dark: #141414;
  --dark-2: #1E1E1E;
  --grey: #F4F4F2;
  --mid-grey: #8A8A8A;
  --white: #FFFFFF;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --max-w: 1200px;
  --radius: 4px;
  --transition: 0.25s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; }
p  { color: #444; line-height: 1.75; }

.text-orange { color: var(--orange); }

/* ─── Layout ────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-dark  { background: var(--dark); color: var(--white); }
.section-dark p { color: #aaa; }
.section-dark h2 { color: var(--white); }
.section-grey { background: var(--grey); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-desc { max-width: 600px; margin: 0 auto; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}
.section-eyebrow.light { color: var(--orange); }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--white); }
.btn-full { width: 100%; text-align: center; }

/* ─── Navbar ────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(10px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-orange { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--orange-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(232,114,42,0.12) 0%, transparent 70%),
    linear-gradient(135deg, #0D0D0D 0%, #1a1a1a 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.38;
  filter: brightness(0.75) saturate(0.65);
}
.hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 6rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity var(--transition);
}
.hero-scroll:hover { opacity: 0.8; }
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: var(--white); }

/* ─── About ─────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-display);
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.about-image { position: relative; }
.image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--grey);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-grey);
  font-size: 0.85rem;
}
.about-tag {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius);
}

/* ─── Focus Areas ───────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.area-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition);
}
.area-card:hover { border-color: rgba(232,114,42,0.4); }
.area-card h3 { color: var(--white); margin: 1rem 0 0.75rem; font-size: 1rem; }
.area-card p { font-size: 0.875rem; margin-bottom: 1.25rem; }
.area-card ul li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.area-card ul li:last-child { border-bottom: none; }
.area-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(232,114,42,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
}
.area-card-accent { border-color: rgba(232,114,42,0.3); }
.area-link { font-size: 0.85rem; color: var(--orange); font-weight: 500; }
.area-link:hover { color: var(--orange-dark); }

/* ─── Services ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  padding: 2rem 0;
  border-top: 2px solid #eee;
  transition: border-color var(--transition);
}
.service-card:hover { border-color: var(--orange); }
.service-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; }

/* ─── Team Marquee ──────────────────────────────────────────── */
@keyframes team-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--marquee-width, 50%))); }
}

.team-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.team-fade {
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 12rem;
  height: 100%;
}
.team-fade-left  { left: 0;  background: linear-gradient(to right, var(--grey), transparent); }
.team-fade-right { right: 0; background: linear-gradient(to left,  var(--grey), transparent); }

.team-marquee-viewport {
  overflow: hidden;
  width: 100%;
}

.team-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: team-scroll 30s linear infinite;
  padding: 0.5rem 0;
}
.team-marquee-track.paused { animation-play-state: paused; }

.team-marquee-card {
  flex-shrink: 0;
  width: 240px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.team-marquee-img-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: #ddd;
}
.team-marquee-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
  display: block;
}
.team-marquee-card:hover .team-marquee-img-wrap img { filter: grayscale(0%); }

.team-marquee-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: 12px;
}
.team-marquee-overlay span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
}
.team-marquee-card:hover .team-marquee-overlay { opacity: 1; }

.team-marquee-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0.25rem 0.25rem;
}
.team-marquee-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
}
.team-marquee-role {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

@media (max-width: 768px) {
  .team-fade { width: 4rem; }
  .team-marquee-card { width: 200px; }
  .team-marquee-img-wrap { height: 260px; }
  .team-marquee-track { gap: 1rem; }
}

@media (max-width: 480px) {
  .team-marquee-card { width: 170px; }
  .team-marquee-img-wrap { height: 220px; }
}

/* ─── Focus Map (Leaflet) ────────────────────────────────────── */
.map-wrap {
  width: 100%;
  margin-bottom: 3rem;
}
#leaflet-map {
  width: 100%;
  height: 480px;
}
.map-tooltip {
  background: rgba(13,13,13,0.92) !important;
  border: 1px solid rgba(232,114,42,0.5) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  padding: 4px 10px !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}
.map-tooltip::before { display: none !important; }
.map-tooltip-oys { border-color: #E8722A !important; color: #E8722A !important; }
.leaflet-attribution-flag { display: none !important; }
.map-boroughs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.map-borough-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,114,42,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  min-width: 180px;
  flex: 1;
  max-width: 220px;
}
.map-borough-card--more { border-color: rgba(255,255,255,0.1); }
.map-borough-dot {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(232,114,42,0.8);
}
.map-borough-dot--dim { background: rgba(255,255,255,0.3); box-shadow: none; }
.map-borough-card strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 0.2rem; }
.map-borough-card p { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin: 0; }
.map-borough-card a { color: var(--orange); }

/* Modal backdrop */
.team-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(6px);
}
.team-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.team-modal {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  width: 100%;
  max-width: 740px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.team-modal-backdrop.open .team-modal { transform: translateY(0); }
.team-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 2;
}
.team-modal-close:hover { background: rgba(255,255,255,0.15); }
.team-modal-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
}
.team-modal-photo {
  width: 240px;
  flex-shrink: 0;
}
.team-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 12px 0 0 12px;
  display: block;
  min-height: 320px;
}
.team-modal-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.team-modal-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}
.team-modal-body h2 {
  color: var(--white);
  font-size: 1.6rem;
  margin: 0;
}
.team-modal-bio {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0;
  flex: 1;
}
.team-modal-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: opacity var(--transition);
}
.team-modal-linkedin:hover { opacity: 0.75; }

@media (max-width: 600px) {
  .team-modal-inner { grid-template-columns: 1fr; }
  .team-modal-photo { width: 100%; height: 260px; }
  .team-modal-photo img { border-radius: 12px 12px 0 0; min-height: 260px; height: 260px; }
  .team-modal-body { padding: 1.5rem; }
  .map-boroughs { flex-direction: column; align-items: stretch; }
  .map-borough-card { max-width: 100%; }
}

/* ─── Partner Marquee ────────────────────────────────────────── */
@keyframes partner-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50%)); }
}
.partner-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.partner-fade {
  pointer-events: none;
  position: absolute;
  top: 0; z-index: 2;
  width: 10rem; height: 100%;
}
.partner-fade-left  { left: 0;  background: linear-gradient(to right, var(--grey), transparent); }
.partner-fade-right { right: 0; background: linear-gradient(to left,  var(--grey), transparent); }
.partner-marquee-viewport { overflow: hidden; width: 100%; }
.partner-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: partner-scroll 28s linear infinite;
  padding: 0.5rem 0 1.5rem;
  align-items: center;
}
.partner-marquee-track.paused { animation-play-state: paused; }

.partner-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  cursor: pointer;
}
.partner-card-inner {
  width: 200px;
  height: 80px;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  background: #fff;
  padding: 1rem 1.25rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.partner-card:hover .partner-card-inner {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(232,114,42,0.15);
  transform: translateY(-2px);
}
/* Full logo image (e.g. IKEA SVG) */
.partner-logo-img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
  display: block;
}
/* Google favicon icon */
.partner-favicon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 4px;
}
/* Favicon + name side-by-side layout */
.partner-card-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}
.partner-name-block {
  text-align: left;
  line-height: 1.25;
}
.partner-name-block strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}
.partner-name-block span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
/* Type label below the card */
.partner-type {
  font-size: 0.68rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .partner-fade { width: 3rem; }
  .partner-card-inner { width: 160px; height: 80px; }
}

/* ─── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 1rem; }
.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); }
.contact-item a { color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: color var(--transition); }
.contact-item a:hover { color: var(--white); }
.contact-item span { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ─── Form ──────────────────────────────────────────────────── */
.enquiry-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
label { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.6); }
input, select, textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }
select option { background: var(--dark-2); color: var(--white); }
input:focus, select:focus, textarea:focus { border-color: var(--orange); }
textarea { resize: vertical; min-height: 120px; }
.form-status { font-size: 0.85rem; text-align: center; padding: 0.5rem; border-radius: var(--radius); }
.form-status.success { background: rgba(34,197,94,0.15); color: #4ade80; }
.form-status.error   { background: rgba(239,68,68,0.15);  color: #f87171; }

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: #080808;
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 3rem;
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.35); margin-top: 0.75rem; max-width: 280px; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ─── Responsive ────────────────────────────────────────────── */
.nav-current,
.nav-links a.active {
  color: var(--white) !important;
  font-weight: 600;
  text-shadow:
    0 0 8px rgba(255,255,255,0.95),
    0 0 20px rgba(255,255,255,0.55),
    0 0 40px rgba(255,255,255,0.2);
}

/* Nav backdrop overlay */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 98;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-backdrop.active { display: block; }

/* Hamburger → X animation */
.nav-toggle span { transition: all 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  #leaflet-map { height: 300px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { gap: 1rem 1.5rem; margin-top: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; }

  /* Mobile nav — slide in from right */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 78vw;
    max-width: 300px;
    background: rgba(14, 14, 14, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 4.5rem 2rem 2rem;
    gap: 0.85rem;
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .nav-cta {
    display: inline-block;
    width: fit-content;
    margin-top: 0.25rem;
    padding: 0.55rem 1.25rem;
  }
  .nav-toggle {
    display: flex;
    z-index: 101;
    padding: 10px;
    margin: -10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .hero-scroll { display: none; }
  .hero-content { padding-top: 7rem; }
  .section-header { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .areas-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }
  .hero-content { padding-top: 6rem; padding-bottom: 2rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 1rem; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 0.75rem 1rem; }
  .contact-grid { gap: 2rem; }
  .footer-links { gap: 1rem; }
}
