/* ─── TOKENS ─── */
:root {
  --bg:        #FAF9F7;
  --bg-warm:   #EDEBE6;
  --bg-dark:   #1A1A1A;
  --text:      #1A1A1A;
  --muted:     #6A6866;
  --accent:    #F3823D;
  --accent-dk: #D96B28;
  --white:     #FFFFFF;
  --border:    rgba(0,0,0,0.10);
  --radius:    14px;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: .75rem 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  font-size: .875rem;
  z-index: 9999;
  transition: top .2s;
}

.skip-link:focus { top: 0; }

/* ─── FOCUS STYLES ─── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── ANCHOR SCROLL OFFSET ─── */
section[id] {
  scroll-margin-top: 80px;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 5rem;
  transition: background .35s, padding .35s, box-shadow .35s;
}

nav.solid {
  background: rgba(250,249,247,.96);
  backdrop-filter: blur(12px);
  padding: 1.1rem 5rem;
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 58px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--text) !important;
  color: var(--white) !important;
  padding: .6rem 1.5rem;
  border-radius: 100px;
  transition: background .25s !important;
}

.nav-cta:hover { background: var(--accent-dk) !important; }

/* ─── HAMBURGER ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: .5rem;
  z-index: 300;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .25s;
}

.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); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 9vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  transition: color .2s;
  display: block;
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-cta a {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--muted);
  transition: color .2s;
}

.mobile-menu-cta a:hover { color: var(--accent); }

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 5rem;
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .02em;
  transition: background .25s, color .25s, transform .25s;
}

.btn-dark {
  background: var(--text);
  color: var(--white);
  padding: 1rem 2rem;
}

.btn-dark:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  border-radius: 0;
}

.btn-ghost:hover { color: var(--accent); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  padding: 1.1rem 2.75rem;
  font-size: 1rem;
  font-weight: 700;
}

.btn-accent:hover {
  background: #D96B28;
  transform: translateY(-2px);
}

/* ─── HERO IMAGE ─── */
.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1px;
  background: var(--bg-warm);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.hero-badge-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: .25rem;
}

.hero-badge-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--bg-dark);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.marquee-track {
  display: flex;
  gap: 2.75rem;
  width: max-content;
  align-items: center;
  animation: marqueeSlide 32s linear infinite;
}

.marquee-track span {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-track span.sep {
  color: var(--accent);
  font-size: .45rem;
  letter-spacing: 0;
}

@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ─── SECTION SHELL ─── */
.section {
  padding: 7rem 5rem;
}

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -.025em;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

/* ─── ABOUT ─── */
.about {
  background: var(--bg-warm);
  display: grid;
  grid-template-columns: 44% 1fr;
  min-height: 88vh;
  padding: 0;
  overflow: hidden;
}

.about-media {
  position: relative;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1s ease;
}

.about-media:hover img { transform: scale(1.03); }

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 6rem 6rem 7rem;
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 1.75rem;
}

.about-lead p + p { margin-top: 1.25rem; }

.about-stats {
  display: flex;
  gap: 0;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.about-stat {
  flex: 1;
  padding-right: 2.5rem;
}

.about-stat + .about-stat {
  padding-left: 2.5rem;
  padding-right: 0;
  border-left: 1px solid var(--border);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  letter-spacing: -.04em;
}

.stat-number sup {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}

.stat-desc {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .6rem;
  line-height: 1.55;
  max-width: 160px;
}

.about-cta {
  margin-top: 3rem;
}

/* ─── SERVICES ─── */
.services { background: var(--bg); }

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
}

.services-intro {
  max-width: 400px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.svc-list {
  list-style: none;
  border-top: 1px solid var(--border);
}

.svc-item {
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.svc-item::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.svc-item:hover::after,
.svc-item.open::after { transform: scaleY(1); }

.svc-trigger {
  display: grid;
  grid-template-columns: 5rem 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem 2rem 2.25rem 2rem;
  transition: background .25s;
}

.svc-item:hover .svc-trigger,
.svc-item.open   .svc-trigger { background: var(--bg-warm); }

.svc-n {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  transition: color .25s;
}

.svc-item:hover .svc-name,
.svc-item.open   .svc-name { color: var(--accent); }

.svc-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.svc-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, border-color .25s, transform .35s cubic-bezier(.4,0,.2,1);
  color: var(--text);
}

.svc-btn svg { transition: inherit; }

.svc-item:hover .svc-btn {
  border-color: var(--accent);
  color: var(--accent);
}

.svc-item.open .svc-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}

.svc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.4,0,.2,1);
  background: var(--bg-warm);
}

.svc-item.open .svc-body { grid-template-rows: 1fr; }

.svc-body-inner {
  overflow: hidden;
}

.svc-body-text {
  padding: 0 2rem 2.25rem calc(5rem + 2rem);
  max-width: 700px;
  font-size: .975rem;
  line-height: 1.85;
  color: var(--muted);
}

/* service siblings dim on hover */
.svc-list:hover .svc-item:not(:hover) {
  opacity: .45;
  transition: opacity .3s;
}
.svc-list .svc-item { transition: opacity .3s, background .25s; }

/* ─── TEAM ─── */
.team {
  background: var(--bg-dark);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 50%;
  min-height: 92vh;
  padding: 0;
  overflow: hidden;
}

.team-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 5rem 7rem 5rem;
}

.team .section-label  { color: var(--accent); }
.team .section-title  { color: var(--white); margin-bottom: 0; }

.team-intro {
  font-size: 1.025rem;
  line-height: 1.85;
  color: rgba(255,255,255,.5);
  margin-top: 1.75rem;
  margin-bottom: 3rem;
  max-width: 460px;
}

.bio-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bio-card {
  padding: 2rem 1.75rem;
  border-left: 2px solid rgba(255,255,255,.1);
  position: relative;
  transition: border-color .3s;
}

.bio-card::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--accent);
  transition: height .45s cubic-bezier(.4,0,.2,1);
}

.bio-card:hover { border-color: transparent; }
.bio-card:hover::before { height: 100%; }

.bio-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.025em;
  margin-bottom: .25rem;
}

.bio-role {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.bio-text {
  font-size: .925rem;
  line-height: 1.8;
  color: rgba(255,255,255,.52);
}

.team-media {
  position: relative;
  overflow: hidden;
}

.team-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1s ease;
}

.team-media:hover img { transform: scale(1.03); }

/* ─── APPROACH ─── */
.approach {
  background: var(--bg-warm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.approach-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 620px;
}

.approach-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-steps {
  margin-top: 2.5rem;
}

.step {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
}

.step-n {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent);
  padding-top: .2rem;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.step-desc {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ─── CLIENTS ─── */
.clients {
  background: var(--bg);
  overflow: hidden;
}

.clients-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.clients-sub {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 340px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.client-item {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.client-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-warm);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}

.client-item:hover::after { transform: scaleY(1); }

.client-name {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--muted);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: color .3s, font-weight .3s;
}

.client-item:hover .client-name {
  color: var(--text);
  font-weight: 600;
}

.client-logo {
  max-height: 42px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: grayscale(100%) brightness(.78) opacity(.8);
  transition: filter .35s ease;
}

.client-item:hover .client-logo {
  filter: grayscale(0%) brightness(1) opacity(1);
}

.client-logo--tall {
  max-height: 72px;
}

.client-logo--lg {
  max-height: 56px;
}

.client-logo--visible {
  filter: grayscale(100%) brightness(.78) opacity(.9);
}

.client-item:hover .client-logo--visible {
  filter: grayscale(0%) brightness(1) opacity(1);
}

/* ─── CONTACT ─── */
.contact {
  background: var(--text);
  color: var(--white);
  text-align: center;
}

.contact .section-label  { color: var(--accent); }

.contact-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.25rem, 3.8vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.contact-title em {
  font-style: italic;
  color: var(--accent);
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

.contact-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.75rem 2.25rem;
  text-align: left;
  transition: border-color .25s, transform .25s;
  min-width: 200px;
}

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

.cc-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .6rem;
}

.cc-value {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

/* ─── FOOTER ─── */
footer {
  background: #0A0A0A;
  padding: 2.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}

.footer-links a:hover { color: var(--accent); }

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  z-index: 10;
  transition: opacity .5s ease;
}

.scroll-indicator.hidden { opacity: 0; pointer-events: none; }

.scroll-indicator-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1.5px;
  height: 56px;
  background: rgba(0,0,0,.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDrop 1.8s cubic-bezier(.4,0,.6,1) infinite;
}

@keyframes scrollDrop {
  0%   { top: -100%; opacity: 1; }
  60%  { top: 100%;  opacity: 1; }
  61%  { top: 100%;  opacity: 0; }
  62%  { top: -100%; opacity: 0; }
  100% { top: -100%; opacity: 0; }
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.4,0,.2,1), transform .9s cubic-bezier(.4,0,.2,1);
}

.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ─── CURSOR ─── */
@media (pointer: fine) {
  * { cursor: none !important; }

  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity .2s, width .25s, height .25s, background .25s;
    will-change: transform;
  }

  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 38px; height: 38px;
    border: 1.5px solid rgba(243,130,61,.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .35s ease, height .35s ease, border-color .35s, background .35s;
    will-change: transform;
  }

  .cursor-dot.hover   { width: 5px; height: 5px; opacity: .5; }
  .cursor-ring.hover  { width: 58px; height: 58px; border-color: rgba(243,130,61,.2); background: rgba(243,130,61,.06); }
  .cursor-dot.clicked { width: 3px; height: 3px; }
  .cursor-ring.clicked{ width: 30px; height: 30px; }
}

/* ─── MOBILE ─── */
@media (max-width: 960px) {
  nav, nav.solid { padding-left: 2rem; padding-right: 2rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .section { padding: 4.5rem 2rem; }

  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 8rem 2rem 3rem; }
  .hero-media { height: 65vw; min-height: 260px; }

  .about { grid-template-columns: 1fr; min-height: auto; }
  .about-media { height: 70vw; min-height: 300px; }
  .about-content { padding: 4rem 2rem; }

  .services { padding: 4.5rem 2rem; }
  .services-head { flex-direction: column; align-items: flex-start; }
  .svc-trigger { grid-template-columns: 3.5rem 1fr auto; gap: 1rem; padding-left: 1.25rem; padding-right: 1.25rem; }
  .svc-tag { display: none; }
  .svc-body-text { padding-left: calc(3.5rem + 1.25rem); }

  .team { grid-template-columns: 1fr; min-height: auto; }
  .team-content { padding: 4.5rem 2rem; }
  .team-media { height: 75vw; min-height: 320px; }

  .approach { grid-template-columns: 1fr; gap: 3rem; padding: 4.5rem 2rem; }
  .approach-img { height: 400px; }

  .clients-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  .contact { padding: 5rem 2rem; }
  .contact-cards { flex-direction: column; align-items: stretch; max-width: 360px; margin-left: auto; margin-right: auto; }

  footer { padding: 2rem; flex-direction: column; text-align: center; gap: 1.25rem; }
}

@media (max-width: 600px) {
  .about-stats { flex-direction: column; gap: 1.5rem; }
  .about-stat + .about-stat { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 1.5rem; }
  .hero-badge { display: none; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
