*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #a855f7;
  --magenta: #22d3ee;
  --black: #050010;
  --charcoal: #0d0020;
  --card: #130025;
  --text: #ffffff;
  --text-dim: rgba(255,255,255,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 60px;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}
.nav-brand span { color: var(--teal); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dim);
  position: relative;
  transition: color 0.2s;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links > li > a:hover { color: var(--text); }
.nav-links > li > a:hover::after { transform: scaleX(1); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--magenta);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s, transform 0.18s;
}
.nav-links > li:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 9px 16px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.dropdown li a:hover {
  color: var(--magenta);
  background: rgba(34,211,238,0.06);
}
.nav-hire {
  margin-left: 12px;
  padding: 7px 20px;
  background: var(--teal);
  color: var(--black) !important;
  font-weight: 700 !important;
  text-decoration: none;
  font-size: 0.65rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s !important;
}
.nav-hire::after { display: none !important; }
.nav-hire:hover { background: var(--magenta) !important; color: #fff !important; }

/* Hamburger toggle — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE HEADER (inner pages) ───────────────────────── */
.page-header {
  margin-top: 60px;
  padding: 80px 48px 64px;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-header-eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
}
.page-header-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.page-header-title span { color: var(--teal); }
.page-header-desc {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 560px;
}

/* ── HERO SPLIT (home) ───────────────────────────────── */
.hero {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  min-height: calc(100vh - 60px);
}
.hero-photo {
  position: relative;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.8) contrast(1.1);
  transition: transform 8s ease;
}
.hero-photo:hover img { transform: scale(1.04); }
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--black) 100%);
}
.photo-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  border-left: 2px solid var(--teal);
  padding-left: 10px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px 40px;
  background: var(--black);
}
.hero-text-eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
}
.hero-text-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.hero-text-name .presents {
  display: block;
  color: var(--teal);
  min-height: 1em;
}
.hero-text-name .presents a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.hero-text-name .presents a:hover {
  text-decoration: underline;
}
.type-cursor {
  display: inline-block;
  width: 3px;
  background: var(--teal);
  margin-left: 4px;
  animation: blink 0.7s step-end infinite;
  vertical-align: baseline;
  height: 0.85em;
  position: relative;
  top: 0.05em;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.hero-text-tagline {
  margin-top: 24px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-dim);
  border-left: 2px solid var(--teal);
  padding-left: 16px;
  max-width: 380px;
}
.hero-text-roles {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.role-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  cursor: default;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.role-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
}
.role-pill:hover { border-color: var(--teal); color: var(--teal); box-shadow: 0 0 12px rgba(168,85,247,0.15); }
.role-pill:hover::before { box-shadow: 0 0 8px var(--teal); }
.role-pill:nth-child(even):hover { border-color: var(--magenta); color: var(--magenta); box-shadow: 0 0 12px rgba(34,211,238,0.15); }
.role-pill:nth-child(even):hover::before { background: var(--magenta); box-shadow: 0 0 8px var(--magenta); }
.hero-cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  padding: 14px 32px;
  background: var(--teal);
  color: var(--black);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--magenta); color: #fff; }
.btn-ghost {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.btn-ghost::after { content: '→'; }
.btn-ghost:hover { color: var(--text); }

/* ── TICKER ──────────────────────────────────────────── */
.ticker-wrap {
  background: var(--teal);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}
.ticker {
  display: flex;
  align-items: center;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}
.ticker-item::after { content: '◆'; font-size: 0.4rem; opacity: 0.5; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION UTILITIES ───────────────────────────────── */
.section {
  padding: 80px 48px;
}
.section-alt {
  background: var(--charcoal);
}
.section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.section-title span { color: var(--teal); }
.section-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 680px;
}
.section-body p + p { margin-top: 16px; }

/* ── CARDS ───────────────────────────────────────────── */
.cards-section {
  padding: 80px 32px;
  background: var(--charcoal);
}
.cards-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.cards-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.04em;
}
.cards-title span { color: var(--teal); }
.cards-view-all {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.cards-view-all::after { content: '→'; }
.cards-view-all:hover { gap: 14px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
}
.card {
  background: var(--card);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.25s;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.25s;
  pointer-events: none;
}
.card:hover { background: #1a1a1a; }
.card:hover::after { border-color: var(--teal); }
.card:nth-child(even):hover::after { border-color: var(--magenta); }
.card-icon {
  width: 36px; height: 36px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(168,85,247,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.card:nth-child(even) .card-icon { background: rgba(34,211,238,0.12); }
.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  color: var(--teal);
}
.card:nth-child(even) .card-title { color: var(--magenta); }
.card-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-dim);
}
.card-arrow {
  position: absolute;
  bottom: 20px; right: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.15);
  transition: color 0.2s, transform 0.2s;
}
.card:hover .card-arrow { color: var(--teal); transform: translate(3px, -3px); }
.card:nth-child(even):hover .card-arrow { color: var(--magenta); }

/* Featured age card */
.card-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(168,85,247,0.12) 0%, rgba(34,211,238,0.06) 100%);
  border: 1px solid rgba(168,85,247,0.25);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.card-featured::after { display: none; }
.card-featured:hover { background: linear-gradient(135deg, rgba(168,85,247,0.2) 0%, rgba(34,211,238,0.1) 100%); }
.card-featured-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  color: var(--teal);
  line-height: 1;
  flex-shrink: 0;
}
.card-featured-body .card-title { font-size: 1.8rem; }
.card-featured-body .card-desc { max-width: 560px; }

/* ── FULL-WIDTH IMAGE BAND ────────────────────────────── */
.img-band {
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
}
.img-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.75) contrast(1.1);
  display: block;
}
.img-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,0,16,0.3) 0%, rgba(5,0,16,0.6) 100%);
}
.img-band-label {
  position: absolute;
  bottom: 28px; left: 48px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  border-left: 2px solid var(--teal);
  padding-left: 10px;
}

/* ── SPLIT LAYOUT ────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.8) contrast(1.1);
  display: block;
  transition: transform 7s ease;
}
.split-img:hover img { transform: scale(1.04); }
.split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--black) 100%);
}
.split-content {
  background: var(--black);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content-alt {
  background: var(--charcoal);
}
.split-img-overlay-left {
  background: linear-gradient(to left, transparent 60%, var(--charcoal) 100%);
}

/* ── STAT ROW ────────────────────────────────────────── */
.stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding: 60px 48px;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  margin-top: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
}

/* ── GALLERY GRID ────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) contrast(1.1);
  transition: transform 0.5s ease, filter 0.3s;
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1) contrast(1.1); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,0,16,0.35);
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 0; }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 48px;
}
.testimonial {
  background: var(--card);
  padding: 32px 28px;
  border-top: 2px solid var(--teal);
  position: relative;
}
.testimonial:nth-child(even) { border-top-color: var(--magenta); }
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-quote::before { content: '\201C'; color: var(--teal); font-size: 1.6em; line-height: 0; vertical-align: -0.4em; margin-right: 2px; }
.testimonial:nth-child(even) .testimonial-quote::before { color: var(--magenta); }
.testimonial-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.testimonial-role {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ── CONTACT FORM ────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-input,
.form-textarea,
.form-select {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--teal); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-submit {
  margin-top: 8px;
  padding: 14px 40px;
  background: var(--teal);
  color: var(--black);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--magenta); color: #fff; }

/* ── HIRE / CTA SECTION ──────────────────────────────── */
.hire-cta {
  padding: 80px 48px;
  text-align: center;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.hire-cta-inner { max-width: 600px; margin: 0 auto; }
.hire-cta .section-body { margin: 0 auto 36px; }
.hire-cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ── LIST ────────────────────────────────────────────── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.check-list li::before {
  content: '—';
  color: var(--teal);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

/* ── RESUME TABLE ────────────────────────────────────── */
.resume-block {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}
.resume-block:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
.resume-block-year {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.resume-block-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.resume-block-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-dim);
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
}
.footer-brand span { color: var(--teal); }
.footer-copy {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}
.footer-nav {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer-nav a {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--teal); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo { height: 55vw; min-height: 260px; }
  .hero-text { padding: 48px 24px; }
  .split { grid-template-columns: 1fr; }
  .split-img { height: 50vw; min-height: 240px; }
  .split-img-overlay { background: linear-gradient(to bottom, transparent 60%, var(--black) 100%); }
  .split-img-overlay-left { background: linear-gradient(to bottom, transparent 60%, var(--charcoal) 100%); }
  .split-content { padding: 48px 24px; }
  .section { padding: 60px 24px; }
  .page-header { padding: 56px 24px 48px; }
  .img-band { height: 300px; }
  .img-band-label { left: 24px; }
  .stat-row { gap: 32px; padding: 48px 24px; }
  .stat-divider { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .hire-cta { padding: 60px 24px; }
}
@media (max-width: 600px) {
  nav { padding: 0 16px; }

  .nav-toggle { display: flex; }

  /* Slide-in mobile menu */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 8px 0 32px;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }

  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    padding: 14px 24px;
    font-size: 0.82rem;
  }
  .nav-links > li > a::after { display: none; }

  /* Show dropdown items inline (expanded) — no hover on touch */
  .dropdown {
    position: static;
    min-width: 0;
    opacity: 1;
    pointer-events: all;
    transform: none;
    background: transparent;
    border: none;
    border-top: none;
    padding-bottom: 8px;
  }
  .dropdown li a {
    padding: 10px 24px 10px 40px;
    font-size: 0.72rem;
  }
  .nav-hire {
    margin: 16px 24px 0;
    padding: 14px 20px;
    text-align: center;
    font-size: 0.72rem !important;
  }

  .hero-text-roles { grid-template-columns: 1fr; }
  .cards-section { padding: 60px 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
