:root {
  --navy:   #0d1f35;
  --navy2:  #162840;
  --navy3:  #1e3450;
  --cream:  #f5f0e6;
  --warm:   #ede5d0;
  --gold:   #b8943c;
  --gold2:  #d4aa50;
  --text:   #1a1410;
  --mid:    #4a4038;
  --muted:  #8a8070;
  --rule:   #ddd5c0;
  --white:  #ffffff;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13,31,53,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,148,60,0.2);
  transition: padding 0.3s;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.nav-logo span { color: var(--gold2); font-style: italic; font-weight: 300; }

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

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold2) !important; color: var(--navy) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  position: relative;
  overflow: hidden;
}

/* geometric background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,148,60,0.06) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.012) 40px,
      rgba(255,255,255,0.012) 41px
    );
  pointer-events: none;
}

.hero-left {
  padding: 8rem 4% 6rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-tag::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
}

.hero h1 strong {
  font-weight: 700;
  display: block;
}

.hero-title-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.75rem 0;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s forwards;
}

.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245,240,230,0.65);
  font-weight: 300;
  max-width: 100%;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}

.hero-subtitle em {
  font-style: normal;
  color: rgba(245,240,230,0.85);
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.75s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: rgba(245,240,230,0.7);
  padding: 0.9rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(245,240,230,0.25);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* hero right — credential panel */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12rem 8% 8rem 4%;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.credential-card {
  border: 1px solid rgba(184,148,60,0.25);
  padding: 2.5rem;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
  width: 100%;
  max-width: 380px;
}

.cred-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184,148,60,0.2);
}

.cred-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: flex-start;
}

.cred-item:last-child { border-bottom: none; }

.cred-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  padding-top: 0.1rem;
  min-width: 70px;
}

.cred-text {
  font-size: 0.78rem;
  color: rgba(245,240,230,0.6);
  line-height: 1.5;
  font-weight: 300;
}

.cred-text strong {
  display: block;
  color: rgba(245,240,230,0.9);
  font-weight: 400;
  margin-bottom: 0.1rem;
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--gold);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-cell {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(13,31,53,0.15);
  position: relative;
  overflow: hidden;
}

.stat-cell:last-child { border-right: none; }

.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
  display: block;
}

.stat-l {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13,31,53,0.6);
}

/* ── ABOUT ── */
.about {
  padding: 7rem 8%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
}

.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

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

.body-text {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.body-text strong { color: var(--text); font-weight: 700; }

.about-right {
  padding-top: 1rem;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  background: var(--warm);
  margin-bottom: 2rem;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.quote-attr {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.credentials-table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.credentials-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  table-layout: fixed;
}

.credentials-table col.cred-col-marker {
  width: 1.35rem;
}

.credentials-table col.cred-col-label {
  width: 34%;
}

.credentials-table tbody tr {
  border-bottom: 1px solid var(--rule);
}

.credentials-table th,
.credentials-table td {
  padding: 0.65rem 0.5rem 0.65rem 0;
  vertical-align: top;
  line-height: 1.55;
}

.credentials-table th[scope='row'] {
  text-align: left;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--text);
  padding-right: 0.85rem;
  background: transparent;
  font-family: inherit;
}

.credentials-table tbody td:last-child {
  color: var(--mid);
  font-weight: 300;
}

.credentials-table .cred-marker {
  width: 1.35rem;
  padding-right: 0.25rem;
  padding-left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  line-height: 1.9;
}

.credentials-table .cred-marker span {
  display: inline-block;
}

.credentials-table a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.credentials-table a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (max-width: 520px) {
  .credentials-table col.cred-col-label {
    width: 42%;
  }
}

/* ── SERVICES ── */
.services {
  background: var(--navy);
  padding: 7rem 8%;
}

.services .section-title { color: var(--cream); }
.services .section-eyebrow { color: var(--gold2); }
.services .section-eyebrow::before { background: var(--gold2); }

.services-intro {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(245,240,230,0.55);
  max-width: 640px;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.svc {
  background: var(--navy);
  padding: 2rem;
  position: relative;
  transition: background 0.2s;
  cursor: default;
}

.svc:hover { background: var(--navy2); }

.svc-bar {
  height: 2px;
  margin-bottom: 1.5rem;
}

.svc-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.svc h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.svc p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(245,240,230,0.45);
  font-weight: 300;
  margin-bottom: 1rem;
}

.svc-clients {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(184,148,60,0.6);
}

.svc-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold2);
  border: 1px solid rgba(212,170,80,0.4);
  padding: 0.12rem 0.45rem;
}

/* ── EXPERTISE ── */
.expertise {
  padding: 7rem 8%;
  background: var(--cream);
}

.expertise-intro {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--mid);
  max-width: 580px;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.exp-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 1.5rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.exp-card:hover {
  box-shadow: 0 8px 32px rgba(13,31,53,0.08);
  transform: translateY(-2px);
}

.exp-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.exp-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.exp-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.exp-desc {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* depth bar */
.exp-depth {
  height: 2px;
  background: var(--rule);
  margin-top: 1rem;
  border-radius: 1px;
  overflow: hidden;
}

.exp-depth-fill {
  height: 100%;
  border-radius: 1px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
}

/* ── TRACK RECORD ── */
.track {
  background: var(--warm);
  padding: 7rem 8%;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.track-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.track-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
}

.track-item:last-child { border-bottom: none; padding-bottom: 0; }

.track-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: 0.1rem;
  text-align: right;
}

.track-content h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.track-content p {
  font-size: 0.76rem;
  color: var(--mid);
  line-height: 1.6;
  font-weight: 300;
}

.track-tag {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,148,60,0.3);
  padding: 0.12rem 0.45rem;
}

/* ── INTERNATIONAL ── */
.international {
  background: var(--navy);
  padding: 7rem 8%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.intl-left .section-title { color: var(--cream); }
.intl-left .section-eyebrow { color: var(--gold2); }
.intl-left .section-eyebrow::before { background: var(--gold2); }
.intl-left .body-text { color: rgba(245,240,230,0.55); }

.intl-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
}

.intl-card {
  background: var(--navy2);
  padding: 1.5rem 2rem;
  transition: background 0.2s;
}

.intl-card:hover { background: var(--navy3); }

.intl-flag {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  filter: saturate(2.5) brightness(1.3) drop-shadow(0 2px 8px rgba(255,255,255,0.15));
  line-height: 1;
  display: block;
}

.intl-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.intl-card p {
  font-size: 0.76rem;
  color: rgba(245,240,230,0.45);
  line-height: 1.6;
  font-weight: 300;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 7rem 8%;
  background: var(--cream);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.testi {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 2rem;
  position: relative;
}

.testi::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  line-height: 1;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-top: 1rem;
}

.testi-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.1rem;
}

.testi-role {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── CONTACT ── */
.contact {
  background: var(--navy);
  padding: 7rem 8%;
}

.contact-inner {
  max-width: 920px;
  margin: 0 auto;
}

.contact-intro {
  max-width: 42rem;
}

.contact-bottom {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.contact-action {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(184,148,60,0.14);
  /* Align with text column of .contact-item (icon 36px + gap 1rem) */
  padding-left: calc(36px + 1rem);
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.7rem 1.2rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.contact-action-btn:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  color: var(--navy);
  transform: translateY(-1px);
}

.contact-action-arrow {
  font-weight: 400;
  color: inherit;
  opacity: 0.9;
  transition: transform 0.2s;
}

.contact-action-btn:hover .contact-action-arrow {
  transform: translateX(3px);
}

.contact .section-title { color: var(--cream); }
.contact .section-eyebrow { color: var(--gold2); }
.contact .section-eyebrow::before { background: var(--gold2); }
.contact .body-text { color: rgba(245,240,230,0.5); }

.contact-details {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(184,148,60,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.3);
  margin-bottom: 0.2rem;
}

.contact-val {
  font-size: 0.82rem;
  color: rgba(245,240,230,0.7);
  font-weight: 300;
}

.contact-val a {
  color: var(--gold2);
  text-decoration: none;
}

/* ── FOOTER ── */
footer {
  background: #080f1a;
  padding: 2rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(184,148,60,0.15);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(245,240,230,0.5);
}

.footer-logo span { color: var(--gold); font-style: italic; }

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

.footer-links a {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-orcid {
  font-size: 0.6rem;
  color: rgba(245,240,230,0.2);
  letter-spacing: 0.05em;
  font-family: 'Lato', sans-serif;
}

/* ── CLIENT LOGOS ── */
.clients {
  background: var(--white);
  padding: 4rem 8%;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.clients-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 2.5rem;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 3rem;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  opacity: 0.55;
  transition: opacity 0.2s;
  filter: grayscale(1);
}

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

.client-logo svg,
.client-logo img {
  height: 100%;
  width: auto;
  max-width: 140px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; } .hero > div:nth-child(2) { display: none; }
  .hero-right { padding: 0 8% 6rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .track-grid { grid-template-columns: 1fr; gap: 0; }
  .international { grid-template-columns: 1fr; gap: 3rem; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .stats-band { grid-template-columns: repeat(3, 1fr); }
  .stat-cell:nth-child(4), .stat-cell:nth-child(5) { border-top: 1px solid rgba(13,31,53,0.15); }
  .services-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
