/* ============================================================
   EDGE Enterprises — style.css
   ============================================================ */

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

:root {
  --amber:       #DB3A2F;
  --amber-dark:  #B82E24;
  --dark:        #1B3A4B;
  --dark-2:      #224555;
  --dark-3:      #2D5365;
  --light:       #E8EFF4;
  --light-2:     #D5DFE8;
  --white:       #FFFFFF;
  --text-dark:   #1C1C1E;
  --text-muted:  #6B6B70;
  --text-light:  #AEAEB4;
  --accent-muted: #5A8FA8;

  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:       1200px;
  --section-pad: 120px;
  --nav-h:       72px;

  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:      0.2s;
  --t-med:       0.4s;
  --t-slow:      0.7s;
}

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.hidden { display: none; }

/* ---- SCROLL ANIMATION ---- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children when parent has .stagger */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--amber);
  color: var(--white);
}
.btn--primary:hover { background: var(--amber-dark); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

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

/* ---- SECTION SHARED ---- */
.section { padding: var(--section-pad) 0; }
.section--light { background: var(--light); }
.section--dark  { background: var(--dark); color: var(--white); }

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.section--dark .section-title { color: var(--white); }

.section-header { max-width: 680px; }

.section-header--wide {
  max-width: none;
}

.section-bridge {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: -32px;
  margin-bottom: 48px;
  max-width: 680px;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--t-med), box-shadow var(--t-med);
}

.nav.scrolled {
  background: rgba(27, 58, 75, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.nav__logo img {
  height: 34px;
  width: auto;
  align-self: center;
}
.nav__logo span {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--amber);
  opacity: 0.7;
  letter-spacing: -0.01em;
  margin-top: -9px;
  align-self: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--t-fast);
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  color: var(--white) !important;
  background: var(--amber);
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background var(--t-fast) !important;
}
.nav__cta:hover { background: var(--amber-dark) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(27, 58, 75, 0.82), rgba(27, 58, 75, 0.88)),
    url('Renshang Factory.jpg') center / cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-muted);
  margin-bottom: 24px;
  transition-delay: 0.1s;
}

.hero__headline {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
  transition-delay: 0.2s;
}

.word-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

.hero__headline em {
  font-style: normal;
  color: var(--amber);
  display: inline-block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__headline em.slide-out {
  transform: translateY(-110%);
}

.hero__headline em.slide-in-prep {
  transform: translateY(110%);
  transition: none;
}

.hero__sub {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 40px;
  transition-delay: 0.3s;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  transition-delay: 0.4s;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  transition-delay: 0.5s;
}

.hero__stat {
  padding-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero__stat:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.hero__stat:nth-child(2), .hero__stat:nth-child(3) { padding-left: 32px; }

.hero__stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  width: 28px;
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--t-fast);
}
.hero__scroll:hover { color: rgba(255,255,255,0.7); }
.hero__scroll svg { width: 100%; height: auto; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---- SERVICES ---- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: 8px;
  padding: 40px 36px;
  transition: box-shadow var(--t-med), transform var(--t-med), border-color var(--t-med);
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: var(--accent-muted);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--amber);
  margin-bottom: 24px;
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  font-size: 0.87rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 2px;
  background: var(--accent-muted);
  border-radius: 2px;
}

/* ---- SERVICE CARD STEP LABEL ---- */
.service-card__step {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-muted);
  margin-bottom: 16px;
}

/* ---- ENGAGEMENT FLOW ---- */
.section--flow {
  background: var(--white);
}

.flow__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.flow__step {
  background: var(--light);
  border: 1px solid var(--light-2);
  border-radius: 8px;
  padding: 40px 36px;
  text-align: center;
  transition: box-shadow var(--t-med), transform var(--t-med), border-color var(--t-med);
}

.flow__step:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transform: translateY(-4px);
  border-color: var(--accent-muted);
}

.flow__step-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-muted);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 16px;
}

.flow__step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.flow__step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--accent-muted);
  opacity: 0.5;
}

.flow__arrow svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 1024px) {
  .flow__steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .flow__arrow { display: none; }
}

@media (max-width: 768px) {
  .flow__steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ---- BAND ---- */
.band {
  background: var(--dark-2);
  padding: 72px 0;
}

.band__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.band__item { padding: 0 40px; }
.band__item:first-child { padding-left: 0; }
.band__item:last-child { padding-right: 0; }

.band__divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

.band__item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.band__item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ---- ABOUT ---- */
.about__lead {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about__copy {
  max-width: 820px;
  margin-bottom: 56px;
}

.about__copy p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about__credentials {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__capability {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 24px;
  border-left: 3px solid var(--amber);
  padding-left: 20px;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.87rem;
  color: var(--text-muted);
}

.credential__icon {
  color: var(--accent-muted);
  font-size: 0.6rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.team__heading {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: 8px;
  padding: 20px 24px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.team-card:hover {
  border-color: var(--accent-muted);
  box-shadow: 0 4px 16px rgba(90,143,168,0.15);
}

.team-card__linkedin {
  margin-left: auto;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-light);
  transition: color var(--t-fast);
  align-self: flex-end;
}

.team-card__linkedin svg {
  width: 100%;
  height: 100%;
  display: block;
}

.team-card__linkedin:hover {
  color: #0A66C2;
}

.team-card__initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--accent-muted);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.team-card__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.team-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.team-card__info strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.team-card__info span {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.team-card__bio {
  font-size: 0.78rem;
  color: var(--accent-muted);
  line-height: 1.5;
  margin-bottom: 4px;
}

.team-card__info a {
  font-size: 0.82rem;
  color: var(--accent-muted);
  transition: opacity var(--t-fast);
}
.team-card__info a:hover { opacity: 0.75; }

/* ---- WORK ---- */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.work-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--t-med), transform var(--t-med);
}

.work-card:hover {
  border-color: var(--accent-muted);
  transform: translateY(-4px);
}

.work-card--bg {
  position: relative;
  overflow: hidden;
}

.work-card--bg::before {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 200px;
  height: 260px;
  background: var(--card-bg) center / contain no-repeat;
  opacity: var(--card-opacity, 0.08);
  pointer-events: none;
}

.work-card--bg:hover::before {
  opacity: calc(var(--card-opacity, 0.08) + 0.05);
}

.work-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.work-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.work-card__need {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.work-card__need strong {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.work-card__milestones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.work-card__milestones li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.work-card__milestones li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 2px;
  background: var(--accent-muted);
  border-radius: 2px;
}

.work-card__results {
  border-top: 1px solid var(--dark-3);
  padding-top: 20px;
  margin-top: auto;
}

.work-card__result-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}

.work-card__result-value {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ---- TESTIMONIALS ---- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow var(--t-med), transform var(--t-med);
}

.testimonial:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}

.testimonial blockquote {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  position: relative;
}

.testimonial blockquote::before {
  content: '\201C';
  font-size: 3.5rem;
  line-height: 0;
  vertical-align: -1rem;
  color: var(--accent-muted);
  opacity: 0.3;
  font-style: normal;
  margin-right: 2px;
}

.testimonial cite {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-style: normal;
  border-top: 1px solid var(--light-2);
  padding-top: 20px;
}

.testimonial cite strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial cite span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---- CONTACT ---- */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact__copy .section-title {
  margin-bottom: 20px;
}

.contact__copy > p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact__direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--t-fast);
}
.contact__link:hover { color: var(--accent-muted); }
.contact__link svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Form */
.contact__form {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--white);
  font: inherit;
  font-size: 0.93rem;
  transition: border-color var(--t-fast), background var(--t-fast);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-muted);
  background: rgba(90,143,168,0.06);
}

/* Form success */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 40px;
  min-height: 200px;
}
.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--accent-muted);
}
.form-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.form-success p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.55);
}

/* ---- FOOTER ---- */
.footer {
  background: #142D3B;
  padding: 56px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 1px;
  margin-bottom: 14px;
}
.footer__logo img {
  height: 38px;
  width: auto;
  align-self: center;
}
.footer__logo span {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--amber);
  opacity: 0.6;
  letter-spacing: -0.01em;
  margin-top: -10px;
  align-self: center;
}

.footer__brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 280px;
}

.footer__nav,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a,
.footer__contact a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t-fast);
}

.footer__nav a:hover,
.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root { --section-pad: 88px; }

  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hero__stat { border-right: none; padding: 0; }
  .hero__stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); padding-right: 32px; }

  .services__grid  { grid-template-columns: 1fr 1fr; }
  .work__grid      { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }

  .team__grid      { grid-template-columns: repeat(2, 1fr); }
  .contact__layout { grid-template-columns: 1fr; gap: 48px; }

  .band__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .band__divider { display: none; }
  .band__item { padding: 0; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .container { padding: 0 20px; }

  /* Nav mobile */
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(27,58,75,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 0 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-med) var(--ease), opacity var(--t-med);
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__links a {
    padding: 14px 24px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav__cta {
    margin: 12px 24px 0;
    text-align: center;
    border-radius: 4px;
  }

  /* Hero */
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__stat { border: none !important; padding: 0 !important; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  /* Grids → single column */
  .services__grid     { grid-template-columns: 1fr; }
  .work__grid         { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .team__grid         { grid-template-columns: 1fr; }
  .band__grid         { grid-template-columns: 1fr; gap: 28px; }
  .footer__inner      { grid-template-columns: 1fr; gap: 32px; }
  .form-row           { grid-template-columns: 1fr; }
}
