/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --orange:      #F7941D;
  --orange-dark: #D97C0A;
  --dark:        #141414;
  --dark-2:      #242A2D;
  --gray:        #6B6B6B;
  --gray-light:  #C8C8C8;
  --off-white:   #F5F4F1;
  --white:       #FFFFFF;
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5%;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(20,20,20,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 5%;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-wrap {
  background: transparent;
  border-radius: 6px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
}
.nav-logo-wrap img { height: 64px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: var(--dark) !important;
  background: var(--orange);
  padding: 0.55rem 1.35rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--orange-dark); color: var(--white) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 300;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--orange); }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 8rem 5% 6rem;
  background:
    linear-gradient(to right, rgba(20,20,20,0.93) 45%, rgba(20,20,20,0.65) 100%),
    url('../assets/img/home1.jpg') center/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
/* Decorative squares */
.hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.sq { position: absolute; border-radius: 3px; }
.sq-1 { width: 360px; height: 360px; border: 1px solid rgba(247,148,29,0.14); top: 12%; right: 5%; transform: rotate(18deg); animation: sqBreath 7s ease-in-out infinite; }
.sq-2 { width: 210px; height: 210px; border: 1px solid rgba(247,148,29,0.2); top: 21%; right: 11%; transform: rotate(18deg); animation: sqBreath 7s ease-in-out infinite 1.2s; }
.sq-3 { width: 68px; height: 68px; background: var(--orange); top: 33.5%; right: 17.5%; transform: rotate(18deg); opacity: 0.8; animation: sqBreath 7s ease-in-out infinite 2.4s; }
.sq-4 { width: 12px; height: 12px; background: var(--orange); opacity: 0.45; bottom: 26%; right: 9%; transform: rotate(18deg); }
@keyframes sqBreath { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.75rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease) 0.15s forwards;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 800; line-height: 1.07;
  color: var(--white); max-width: 860px; letter-spacing: -0.02em;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero-h1 em { font-style: normal; color: var(--orange); }
.hero-sub {
  margin-top: 1.75rem; font-size: 1.1rem; font-weight: 300;
  color: rgba(255,255,255,0.55); max-width: 500px; line-height: 1.7;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease) 0.45s forwards;
}
.hero-actions {
  margin-top: 2.75rem; display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 5%;
  display: flex; align-items: center; gap: 0.8rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 1s forwards;
}
.hero-scroll-bar { width: 44px; height: 1px; background: rgba(255,255,255,0.15); overflow: hidden; position: relative; }
.hero-scroll-bar::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--orange); animation: slideBar 2.2s ease-in-out 1.5s infinite;
}
@keyframes slideBar { 0% { left:-100%; } 100% { left:100%; } }
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.25); }

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

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  text-decoration: none; border-radius: 8px;
  transition: all 0.2s var(--ease); cursor: pointer; border: none;
}
.btn-orange {
  color: var(--dark); background: var(--orange);
  padding: 0.85rem 1.85rem;
  box-shadow: 0 4px 24px rgba(247,148,29,0.28);
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(247,148,29,0.35); }
.btn-orange svg, .btn-dark svg { transition: transform 0.2s; }
.btn-orange:hover svg, .btn-dark:hover svg { transform: translateX(3px); }
.btn-ghost { color: rgba(255,255,255,0.55); padding: 0.85rem 0; }
.btn-ghost:hover { color: var(--white); }
.btn-dark {
  color: var(--white); background: var(--dark);
  padding: 0.9rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.btn-outline {
  color: var(--dark); background: transparent;
  padding: 0.85rem 1.85rem;
  border: 2px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

/* ─── STATS BAND ─────────────────────────────────────── */
.band { background: var(--orange); padding: 0 5%; display: flex; align-items: stretch; justify-content: center; }
.band-inner { max-width: 1200px; width: 100%; display: flex; align-items: center; }
.band-stat { flex: 1; padding: 2.5rem 2rem; text-align: center; position: relative; }
.band-stat + .band-stat::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(20,20,20,0.15);
}
.band-num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--dark); line-height: 1; letter-spacing: -0.02em; }
.band-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(20,20,20,0.55); margin-top: 0.45rem; }

/* ─── LAYOUT ─────────────────────────────────────────── */
.section { padding: 7rem 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.2rem;
}
.eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); border-radius: 2px; }
.h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 700; line-height: 1.13;
  color: var(--dark); letter-spacing: -0.015em;
}
.h2 em { font-style: normal; color: var(--orange); }
.text-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.9rem; font-weight: 600; color: var(--orange);
  text-decoration: none; margin-top: 0.5rem; transition: gap 0.2s;
}
.text-link:hover { gap: 0.8rem; }

/* ─── ABOUT ──────────────────────────────────────────── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-text .h2 { margin-bottom: 1.4rem; }
.about-text p { font-size: 1.025rem; line-height: 1.78; color: var(--gray); margin-bottom: 1.1rem; }

.about-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 2.75rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.about-card-sq {
  position: absolute;
  top: -24px; right: -24px;
  width: 96px; height: 96px;
  background: var(--orange);
  border-radius: 5px;
  transform: rotate(15deg);
  opacity: 0.9;
}
.about-card-sq-2 {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 60px; height: 60px;
  border: 1px solid rgba(247,148,29,0.2);
  border-radius: 4px;
  transform: rotate(10deg);
}
.about-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.85rem;
}
.about-card-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.75rem;
}
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.925rem;
  color: rgba(255,255,255,0.65);
}
.about-list li .dot {
  width: 8px; height: 8px;
  min-width: 8px;
  background: var(--orange);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* ─── PRINCIPLES ─────────────────────────────────────── */
.principles { background: var(--off-white); }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.principle-card {
  background: var(--white); border-radius: 16px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.principle-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--orange);
  opacity: 0.07;
  border-radius: 0 16px 0 100%;
}
.principle-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.principle-icon {
  width: 48px; height: 48px; background: rgba(247,148,29,0.1);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 1.25rem;
}
.principle-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.principle-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

/* ─── SERVICES ───────────────────────────────────────── */
.services { background: var(--white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 3.5rem; }
.services-header .h2 { max-width: 460px; }
.service-list { display: flex; flex-direction: column; }
.service-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background 0.2s;
}
.service-item:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
.service-item:hover { background: var(--off-white); padding-left: 1rem; padding-right: 1rem; margin-left: -1rem; margin-right: -1rem; border-radius: 12px; border-color: transparent; }
.service-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
  padding-top: 0.15rem;
}
.service-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.45rem; line-height: 1.3; }
.service-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }
.services-cta { margin-top: 3.5rem; text-align: center; padding: 2.75rem; background: var(--off-white); border-radius: 20px; }
.services-cta h3 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }

/* ─── TEAM ───────────────────────────────────────────── */
.team { background: var(--off-white); }
.team-header { margin-bottom: 3.5rem; }
.team-intro { font-size: 1.05rem; font-weight: 300; color: var(--gray); max-width: 620px; line-height: 1.72; margin-top: 1rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(0,0,0,0.1); }
.team-photo { aspect-ratio: 1/1; overflow: hidden; background: var(--off-white); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-body { padding: 1.25rem 1.5rem 1.5rem; }
.team-role { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.35rem; }
.team-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.65rem; }
.team-bio { font-size: 0.82rem; color: var(--gray); line-height: 1.65; margin-bottom: 1rem; }
.team-email {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--orange); text-decoration: none;
  font-weight: 500; transition: gap 0.2s;
}
.team-email:hover { gap: 0.7rem; }

/* ─── ABOUT DARK (CTA strip) ──────────────────────────── */
.cta-dark {
  background: var(--dark);
  position: relative; overflow: hidden;
  padding: 7rem 5%;
}
.cta-dark-ring {
  position: absolute; border: 1px solid rgba(247,148,29,0.08);
  border-radius: 5px; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(22deg);
  pointer-events: none;
}
.cta-dark-ring-1 { width: 700px; height: 700px; }
.cta-dark-ring-2 { width: 480px; height: 480px; border-color: rgba(247,148,29,0.05); }
.cta-dark-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 4rem;
}
.cta-dark-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800; color: var(--white);
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.cta-dark-text h2 em { font-style: normal; color: var(--orange); }
.cta-dark-text p { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 520px; }
.cta-dark-btns { display: flex; flex-direction: column; gap: 0.85rem; align-items: flex-start; flex-shrink: 0; }

/* ─── CONTACT ────────────────────────────────────────── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: end; }
.contact-info .h2 { margin-bottom: 1.2rem; }
.contact-info > p { font-size: 1.025rem; color: var(--gray); line-height: 1.75; margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem; background: var(--off-white);
  border-radius: 12px; margin-bottom: 1rem;
}
.contact-detail-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(247,148,29,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--orange);
}
.contact-detail-text { font-size: 0.875rem; color: var(--gray); }
.contact-detail-text strong { display: block; font-weight: 600; color: var(--dark); margin-bottom: 0.2rem; font-size: 0.9rem; }
.contact-detail-text a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--orange-dark); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--dark); letter-spacing: 0.04em; }
.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--off-white);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--gray-light); }
.field input:focus,
.field textarea:focus { border-color: var(--orange); background: var(--white); }
.field textarea { resize: vertical; min-height: 140px; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn-orange { width: 100%; justify-content: center; padding: 1rem; font-size: 0.95rem; }

/* ─── CTA STRIP ──────────────────────────────────────── */
.cta-strip { background: var(--orange); padding: 6rem 5%; }
.cta-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
}
.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800; color: var(--dark);
  line-height: 1.12; letter-spacing: -0.015em; margin-bottom: 0.65rem;
}
.cta-text p { font-size: 1rem; color: rgba(20,20,20,0.6); }
.cta-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; flex-shrink: 0; }
.cta-actions .email { font-size: 0.8rem; color: rgba(20,20,20,0.5); text-decoration: none; transition: color 0.2s; }
.cta-actions .email:hover { color: var(--dark); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--dark-2); padding: 2.75rem 5%; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.footer-logo img { height: 26px; filter: brightness(0) invert(1); opacity: 0.55; transition: opacity 0.2s; }
.footer-logo:hover img { opacity: 1; }
.footer-links { display: flex; gap: 2.25rem; list-style: none; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* ─── BACKGROUND PATTERNS ───────────────────────────── */

/* Principles: dot grid */
.principles { position: relative; }
.principles::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(20,20,20,0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.principles .container { position: relative; z-index: 1; }

/* Team: dot grid */
.team { position: relative; }
.team::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(20,20,20,0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.team .container { position: relative; z-index: 1; }

/* Contact: orange dot pattern */
.contact { position: relative; }
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(247,148,29,0.1) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}
.contact .container { position: relative; z-index: 1; }

.cta-strip-inner { position: relative; z-index: 1; }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .cta-dark-inner,
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-dark-btns,
  .cta-actions { align-items: center; }
  .cta-dark-text p { max-width: 100%; }
  .services-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav { padding: 1.25rem 5%; }
  .nav.scrolled { padding: 1rem 5%; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 5rem 5%; }
  .hero { padding: 7rem 5% 5rem; }
  .hero-scroll { display: none; }
  .band-inner { flex-wrap: wrap; }
  .band-stat { flex-basis: 45%; }
  .band-stat + .band-stat::before { display: none; }
  .service-item { grid-template-columns: 3.5rem 1fr; gap: 0 1.25rem; }
  .service-num { font-size: 1.6rem; }
  .team-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer-links { flex-wrap: wrap; gap: 1.25rem; }
}

@media (max-width: 480px) {
  .band-stat { flex-basis: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
