/* ============================================================
   QUALITY BUILT SOLUTIONS — Premium Stylesheet
   Aesthetic: Refined Industrial · Warm Neutrals · Editorial
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --black:   #0e0e0e;
  --dark:    #1c1c1c;
  --mid:     #2e2e2e;
  --stone:   #5a5550;
  --warm:    #f5f2ed;
  --light:   #faf9f7;
  --white:   #ffffff;
  --orange:  #c9601a;
  --orange-light: #e07a38;
  --border:  rgba(90,85,80,0.15);
  --border-dark: rgba(255,255,255,0.1);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --transition: 0.35s var(--ease);
  --radius: 2px;
}

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

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; line-height: 1.75; color: var(--stone); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a84e14;
  margin-bottom: 1rem;
  display: block;
}

/* ── Layout ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section { padding: 120px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.6); }
.section--warm { background: var(--warm); }

  to   { opacity: 1; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  width: 48px; height: 1px;
  background: var(--orange);
  margin: 1.5rem 0 2rem;
}
.divider--light { background: rgba(255,255,255,0.3); }
.divider--center { margin: 1.5rem auto 2rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-primary {
  background: #a84e14;
  color: #ffffff;
}
.btn-primary:hover { background: #c9601a; transform: translateY(-2px); }
.btn-outline {
  border: 1px solid var(--dark);
  color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-outline--light {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline--light:hover { background: var(--white); color: var(--dark); }
.btn-arrow::after {
  content: '→';
  transition: transform 0.3s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ════════════════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header.scrolled {
  padding: 14px 0;
  background: rgba(250,249,247,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.header.scrolled .nav-logo img { filter: none; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 44px; transition: var(--transition); }
.nav-logo .logo-light { display: block; }
.nav-logo .logo-dark  { display: none; }
.header.scrolled .nav-logo .logo-light { display: none; }
.header.scrolled .nav-logo .logo-dark  { display: block; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.header.scrolled .nav-links a { color: var(--dark); }
.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active { color: var(--orange); }

.nav-cta .btn-primary { padding: 10px 24px; }

/* Nav Dropdown */
.nav-dropdown { position: relative; padding-bottom: 8px; margin-bottom: -8px; }
.nav-dropdown > a::after {
  display: none;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  background: var(--white);
  min-width: 220px;
  padding: 16px 0 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 200;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: transparent;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark) !important;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--warm); color: var(--orange) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.header.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  padding: 100px 48px 48px;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.mobile-nav.open { display: flex; opacity: 1; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .btn-primary { margin-top: 24px; align-self: flex-start; }

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s var(--ease-out);
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.85) 0%, rgba(14,14,14,0.3) 50%, rgba(14,14,14,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
  width: 100%;
}
.hero h1 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--orange); }
.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.3; }
  50% { transform: scaleY(0.5); opacity: 0.8; }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.8) 0%, rgba(14,14,14,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  color: var(--white);
}
.page-hero h1 { color: var(--white); }

/* ════════════════════════════════════════════════════════
   HOME — INTRO
════════════════════════════════════════════════════════ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.intro-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.intro-image:hover img { transform: scale(1.03); }
.intro-image-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  border: 1px solid var(--orange);
  z-index: -1;
}
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════
   SERVICES OVERVIEW (HOME)
════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--light);
  padding: 48px 36px;
  transition: background 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.4s var(--ease);
}
.service-card:hover { background: var(--warm); }
.service-card:hover::before { width: 100%; }
.service-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.35s;
}
.service-card:hover .service-num { color: rgba(201,96,26,0.15); }
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.service-card p { font-size: 0.9rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap 0.3s;
}
.service-link:hover { gap: 14px; }

/* ════════════════════════════════════════════════════════
   WHY US (HOME)
════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
}
.why-item {
  padding: 52px 48px;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
}
.why-item h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin: 16px 0 12px;
}
.why-item p { font-size: 0.9rem; }
.why-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
}

/* ════════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════════ */
.cta-band {
  padding: 96px 0;
  background: var(--orange);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 16px auto 40px; }

/* ════════════════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.values-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.value-item:first-child { border-top: 1px solid var(--border); }
.value-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--orange);
  padding-top: 4px;
  flex-shrink: 0;
}
.value-item h4 { font-family: var(--sans); font-weight: 500; font-size: 0.95rem; margin-bottom: 4px; }
.value-item p { font-size: 0.88rem; }

/* Projects grid */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  aspect-ratio: 4/3;
  background: var(--warm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--stone);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.project-card:hover { border-color: var(--orange); }
.project-card-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--stone);
}
.project-card span { font-size: 0.72rem; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-card .team-photo {
  aspect-ratio: 3/4;
  background: var(--warm);
  overflow: hidden;
  margin-bottom: 16px;
}
.team-card h4 { font-family: var(--sans); font-weight: 500; font-size: 0.95rem; }
.team-card p { font-size: 0.82rem; color: var(--orange); margin-top: 2px; }

/* ════════════════════════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════════════════════════ */
.service-detail {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-detail-image:hover img { transform: scale(1.04); }
.service-detail-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.service-points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--stone);
}
.service-point::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 10px;
}

/* ════════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 8px; }
.contact-info-items { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.contact-info-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-info-item:first-child { border-top: 1px solid var(--border); }
.contact-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 4px;
}
.contact-info-item p { font-size: 0.95rem; color: var(--dark); }

/* Form */
.contact-form { padding: 56px; background: var(--warm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.form-submit:hover { background: var(--orange); }

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand img { height: 38px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h5,
.footer-heading {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 8px;
}

/* ════════════════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.35s var(--ease);
  border: 1px solid rgba(255,255,255,0.1);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--orange); }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .intro-grid,
  .about-grid,
  .service-detail-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-grid.reverse { direction: ltr; }
  .intro-image { aspect-ratio: 3/2; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }
  .contact-form { padding: 32px 24px; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .btn { padding: 12px 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr; gap: 24px; }
}