/* ── RESET & TOKENS ── */
:root {
  --black: #2C2A27;
  --cream: #eeebe5;
  --sage: #87ae73;
  --sage-deep: #4f6b42;
  --taupe: #d9bfac;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

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

/* ── SECTION THEMES ── */
.section-dark  { background: var(--black); color: var(--cream); }
.section-cream { background: var(--cream); color: var(--black); }
.section-sage  { background: var(--sage-deep); color: #fff; }

.section-sage .section-label { color: rgba(255,255,255,0.55); }
.section-sage .section-title { color: #fff; }
.section-sage .section-title em { opacity: 0.75; }
.section-sage .timeline::before { background: rgba(255,255,255,0.22); }
.section-sage .tl-dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.25); }
.section-sage .tl-card { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.22); }
.section-sage .tl-card:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.32); }
.section-sage .tl-date { color: rgba(255,255,255,0.72); }
.section-sage .tl-role { color: #fff; }
.section-sage .tl-company { color: rgba(255,255,255,0.62); }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
}

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 56px; }

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 10px;
}

.section-dark .section-label { color: rgba(255,255,255,0.35); }

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section-title em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.08em;
  opacity: 0.55;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 44px;
  transition: background 0.4s var(--ease), padding 0.3s var(--ease), box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(238, 235, 229, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 15px 44px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--black);
  cursor: default;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(0,0,0,0.58);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-contact-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--black);
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-contact-btn:hover {
  background: var(--sage);
  color: var(--black) !important;
  transform: translateY(-1px);
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(10,10,10,0.65);
  flex-shrink: 0;
}

.nav-status-dot {
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  background: var(--cream);
  overflow: hidden;
}

.hero-name {
  position: absolute;
  top: 112px;
  left: 0; right: 0;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 19vw, 270px);
  color: #4a6a3a;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  z-index: 1;
  white-space: nowrap;
}

.hero-photo {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(240px, 33vw, 480px);
  z-index: 3;
}

.hero-photo img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  display: block;
  object-fit: contain;
  object-position: top center;
  -webkit-mask-image: linear-gradient(to bottom, black 58%, transparent 94%);
  mask-image: linear-gradient(to bottom, black 58%, transparent 94%);
}

.hero-lower {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 84vw;
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 0 56px;
  z-index: 2;
}

.hero-left { max-width: 240px; }

.hero-tagline {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(10,10,10,0.55);
  margin-bottom: 18px;
}

.hero-hire {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--sage);
  text-decoration: none;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.hero-hire:hover { gap: 10px; }

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: right;
}

.hero-right span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(10,10,10,0.28);
  line-height: 1.5;
}

.hero-right span:first-child {
  color: rgba(10,10,10,0.62);
  font-weight: 500;
}

/* dot grid decoration – upper right */
.hero::after {
  content: '';
  position: absolute;
  top: 72px;
  right: 60px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(circle, rgba(135,174,115,0.22) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  z-index: 0;
  pointer-events: none;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--black);
  padding: 36px 44px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.stat-num sup {
  font-size: 0.52em;
  vertical-align: super;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.stat-line {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* ── TIMELINE ── */
.timeline-section { padding: 100px 0; }

.section-dark .section-title { color: #fff; }

.timeline {
  position: relative;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,0.22);
}

.tl-item {
  position: relative;
  margin-bottom: 20px;
}

.tl-dot {
  position: absolute;
  left: -44px;
  top: 28px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.25);
}

.tl-card {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 22px 24px;
  transition: background 0.3s, border-color 0.3s;
  display: flex;
  align-items: center;
  gap: 20px;
}

.tl-card:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.28);
}

.tl-card-body { flex: 1; min-width: 0; }

.tl-logo {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  background: rgba(255,255,255,0.92);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
}

.tl-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tl-logo-letter {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--sage-deep);
}

.tl-date {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}

.tl-role {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 4px;
}

.tl-company {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0;
}

.tl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tl-list li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.tl-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 600;
}

.tl-list strong { color: rgba(255,255,255,0.9); font-weight: 600; }

/* ── TOOLS ── */
.tools-section { padding: 100px 0; }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tool-category {
  padding: 28px 28px;
  background: rgba(0,0,0,0.035);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  transition: border-color 0.25s, background 0.25s;
}

.tool-category:hover {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.13);
}

.tool-cat-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  margin-bottom: 16px;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 100px;
  padding: 6px 14px;
  transition: background 0.2s;
}

.tag:hover { background: rgba(0,0,0,0.1); }

/* ── CASE STUDIES ── */
.case-studies { padding: 100px 0; }

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

.cs-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: background 0.3s, transform 0.35s var(--ease);
}

.cs-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-5px);
}

.cs-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.cs-company {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #fff;
}

.cs-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 8px;
}

.cs-body {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
}

.cs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cs-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.56);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}

.cs-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.28);
  font-size: 11px;
  top: 2px;
}

.cs-metrics {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  margin-top: auto;
}

.cs-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
}

.cs-metric:first-child { padding-left: 0; }
.cs-metric:last-child  { padding-right: 0; }

.cs-metric + .cs-metric {
  border-left: 1px solid rgba(255,255,255,0.08);
}

.cs-metric-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}

.cs-metric-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: #f7f4ef;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  line-height: 0.6;
  color: var(--sage);
  opacity: 0.35;
}

.testi-body {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(0,0,0,0.68);
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.testi-role {
  font-size: 12px;
  color: rgba(0,0,0,0.42);
  margin-top: 2px;
}

/* ── WHERE I'VE WORKED ── */
.trusted-by {
  padding: 48px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.trusted-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 28px;
}

.marquee-wrap {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 50s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  width: 140px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 36px;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.75;
  transition: opacity 0.25s;
}

.marquee-item:hover img { opacity: 1; }

.marquee-item-jade img { transform: scale(1.6); }

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

/* ── CONTACT ── */
.contact-section { padding: 100px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  margin-bottom: 16px;
  line-height: 1.1;
}

.contact-sub {
  font-size: 15px;
  color: rgba(0,0,0,0.52);
  line-height: 1.68;
  margin-bottom: 36px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--sage); }

.cl-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0,0,0,0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s;
}

.contact-link:hover .cl-icon { background: rgba(135, 174, 115, 0.15); }

.resume-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.25s var(--ease);
}

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

.resume-arrow { transition: transform 0.2s; }
.resume-btn:hover .resume-arrow { transform: translateY(2px); }

/* ── CONTACT FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.42);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--black);
  background: rgba(0,0,0,0.04);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(0,0,0,0.3); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sage);
  background: rgba(135, 174, 115, 0.06);
}

.form-field textarea { min-height: 120px; }

.form-submit {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--black);
  border: none;
  border-radius: 100px;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.2s, transform 0.25s var(--ease);
  align-self: flex-start;
  letter-spacing: -0.01em;
}

.form-submit:hover { background: #2a2a2a; transform: translateY(-2px); }

/* ── FOOTER ── */
.footer { padding: 32px 0; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo { font-size: 20px; color: #fff; }

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.75); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tools-grid  { grid-template-columns: repeat(2, 1fr); }
  .cs-grid     { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
  .testi-grid  { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }

  .timeline { padding-left: 32px; }
  .timeline::before { left: 6px; }
  .tl-dot { left: -28px; }
  .tl-logo { width: 60px; height: 60px; }
}

/* ══════════════════════════════════════════
   NEW PAGE STYLES
   ══════════════════════════════════════════ */

/* Logo as link */
a.logo { text-decoration: none; color: var(--black); }
.footer a.logo,
.footer .logo { color: rgba(255,255,255,0.72); }

/* Active nav link */
.nav-links a.active {
  color: var(--black);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1.5px;
  background: var(--black);
  border-radius: 2px;
}

/* ── ABOUT PAGE ── */
.about-hero { padding: 130px 0 80px; }

.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 100px;
  padding: 20px 10px 80px;
}

.photo-card {
  background: #fff;
  padding: 12px 12px 44px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.13), 0 1px 4px rgba(0,0,0,0.07);
  position: relative;
}

.photo-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 320px;
}

.photo-caption {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  padding-top: 10px;
}

.photo-card--grad {
  transform: rotate(-2.5deg);
  position: relative;
  z-index: 2;
  margin-bottom: -50px;
}

.photo-card--scout {
  transform: rotate(3.5deg);
  margin-left: 28px;
  position: relative;
  z-index: 1;
}

.about-content { padding-top: 12px; }

.about-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 28px;
}

.about-heading em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.06em;
  opacity: 0.5;
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.about-bio p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0,0,0,0.58);
}

/* Pull quote */
.pull-quote-section {
  background: var(--black);
  padding: 84px 0;
  text-align: center;
}

.pull-quote-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 44px;
}

.pull-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 96px;
  line-height: 0.5;
  color: var(--sage);
  opacity: 0.35;
  display: block;
  margin-bottom: 28px;
}

.pull-quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.55;
  color: #fff;
  margin-bottom: 24px;
}

.pull-quote-attr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* Beyond the resume */
.beyond-section { padding: 100px 0; }

.beyond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.beyond-card {
  padding: 32px;
  background: rgba(0,0,0,0.035);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  transition: background 0.25s, border-color 0.25s;
}

.beyond-card:hover {
  background: rgba(0,0,0,0.056);
  border-color: rgba(0,0,0,0.13);
}

.beyond-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 16px;
}

.beyond-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 10px;
}

.beyond-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,0.52);
}

/* ── SKILLS PAGE ── */
.skills-page-header {
  padding: 130px 0 64px;
}

.skills-page-header .section-title {
  font-size: clamp(40px, 6vw, 72px);
}

/* Logo grid */
.logo-grid-section { padding: 100px 0 72px; }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.logo-tile {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 20px 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.logo-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  border-color: rgba(0,0,0,0.14);
}

.logo-tile img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.logo-tile-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--black);
  text-align: center;
  line-height: 1.1;
}

.logo-tile-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  text-align: center;
  line-height: 1.3;
}

.certs-section { padding: 100px 0; }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cert-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.25s, border-color 0.25s;
}

.cert-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
}

.cert-card.placeholder {
  border-style: dashed;
  opacity: 0.38;
  pointer-events: none;
}

.cert-issuer {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.cert-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.3;
}

.cert-date {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: auto;
  padding-top: 6px;
}

.cert-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sage);
  text-decoration: none;
}

.cert-link:hover { opacity: 0.72; }

/* ── WORK PAGE ── */
.work-page-header { padding: 130px 0 52px; }

.filter-bar {
  position: sticky;
  top: 63px;
  z-index: 99;
  background: rgba(238,235,229,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 14px 44px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.14);
  background: transparent;
  color: rgba(0,0,0,0.5);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.filter-btn:hover {
  border-color: var(--black);
  color: var(--black);
}

.filter-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.work-section {
  padding: 60px 0 100px;
  background: var(--cream);
  min-height: 50vh;
}

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

.work-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: #f9f8f6;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.work-card.hidden { display: none; }

.work-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-thumb-gradient {
  position: absolute;
  inset: 0;
}

.work-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.work-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  padding-left: 3px;
  transition: background 0.2s, transform 0.2s;
}

.work-card:hover .work-play-btn {
  background: rgba(255,255,255,0.28);
  transform: scale(1.08);
}

.work-thumb-icon {
  font-size: 38px;
  line-height: 1;
  opacity: 0.35;
}

.work-thumb-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.work-card-body {
  padding: 24px 26px 28px;
}

.work-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sage);
  color: var(--black);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.work-card-company {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 4px;
}

.work-card-title {
  font-size: 14px;
  color: rgba(0,0,0,0.4);
  margin-bottom: 12px;
}

.work-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0,0,0,0.56);
  margin-bottom: 20px;
}

.work-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(0,0,0,0.18);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.work-card-cta:hover {
  color: var(--sage-deep);
  border-color: var(--sage-deep);
}

.work-card-placeholder {
  border-style: dashed;
  border-color: rgba(0,0,0,0.12);
  opacity: 0.52;
}

/* ── VIDEO MODAL ── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-inner {
  position: relative;
  width: 90vw;
  max-width: 920px;
  aspect-ratio: 16 / 9;
}

.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-modal-close:hover { background: rgba(255,255,255,0.22); }

.work-card-placeholder:hover {
  transform: none;
  box-shadow: none;
}

/* ── RESPONSIVE: NEW PAGES ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .about-photo { position: static; max-width: 360px; margin: 0 auto 80px; }
  .photo-card img { height: 240px; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 0 32px;
}
.nav-mobile-menu a {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 16px 0;
  background: var(--black);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 12px;
  transition: background 0.2s, transform 0.15s;
}
.nav-mobile-menu a:hover,
.nav-mobile-menu a:active { background: var(--sage); color: var(--black); transform: scale(0.98); }
.nav-mobile-menu .mobile-contact-link {
  background: var(--sage);
  color: var(--black);
}
.nav-mobile-menu .mobile-contact-link:hover { background: var(--sage-deep); color: #fff; }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  padding: 8px;
  line-height: 1;
}

@media (max-width: 900px) {
  .nav { padding: 18px 24px; background: var(--cream); box-shadow: 0 1px 0 rgba(0,0,0,0.08); }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-contact-btn { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }

  .hero { height: 64vh; min-height: 460px; }
  .hero-name { font-size: clamp(36px, 14vw, 80px); top: 96px; }
  .hero-photo { width: clamp(220px, 62vw, 340px); top: auto; bottom: 0; }

  .about-photo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 100%; padding: 0; }
  .photo-card img { height: 200px; }
  .photo-card--grad { margin-bottom: 0; margin-top: 24px; }
  .photo-card--scout { margin-left: 0; }
  .hero-lower { width: 90vw; padding: 0 0 32px; }
  .hero-left { max-width: 140px; }
  .hero-tagline { font-size: 11px; }
  .hero-hire { font-size: 12px; }
  .hero-right span { font-size: 11px; }
  .hero::after { display: none; }

  .stats-bar { padding: 28px 24px; }
  .stats-inner { flex-wrap: wrap; justify-content: center; gap: 24px 0; }
  .stat { width: 50%; }
  .stat-line { display: none; }

  .timeline-section,
  .tools-section,
  .case-studies,
  .testimonials,
  .contact-section { padding: 72px 0; }

  .tools-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .about-hero { padding: 100px 0 60px; }
  .about-heading { font-size: 32px; }
  .about-bio p { font-size: 15px; }
  .pull-quote-inner { padding: 0 24px; }
  .pull-quote-mark { font-size: 72px; }
  .beyond-grid { grid-template-columns: 1fr; }

  .skills-page-header { padding: 100px 0 48px; }
  .logo-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .cert-grid { grid-template-columns: 1fr; }

  .work-page-header { padding: 100px 0 36px; }
  .filter-bar { padding: 12px 24px; gap: 8px; }
  .work-section { padding: 40px 0 72px; }
}
