/* ═══════════════════════════════════════════════
   TEJUNE KANG — Personal Website
   Font: Playfair Display (serif) + Inter (sans)
   Loaded via Google Fonts in index.html
═══════════════════════════════════════════════ */

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

:root {
  --cream:     #FDFBF7;
  --white:     #FFFFFF;
  --ink:       #0B1320;
  --ink2:      #1C2B45;
  --navy:      #0F2D5E;
  --gold:      #C07D1E;
  --gold-lt:   #E9A535;
  --gold-pale: #FEF3DC;
  --blue:      #1A4FC4;
  --blue-lt:   #4880F8;
  --blue-pale: #EBF0FD;
  --teal:      #0D7A6A;
  --teal-pale: #E6F4F1;
  --red:       #B91C1C;
  --gray:      #64748B;
  --gray-lt:   #E2E8F0;
  --gray-pale: #F8FAFC;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.14);
  --shadow-xl:  0 40px 100px rgba(0,0,0,0.18);
}

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

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── UTILITY ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 5%; }
.serif { font-family: var(--serif); }
.gold  { color: var(--gold); }
.blue  { color: var(--blue); }

/* ══════════════════
   NAV
══════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(253,251,247,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.83rem; font-weight: 500;
  color: var(--gray); letter-spacing: 0.02em;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--navy); color: var(--white);
  padding: 0.6rem 1.4rem; border-radius: 6px;
  font-size: 0.82rem; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--blue); transform: translateY(-1px); }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.25s; }

/* ══════════════════
   HERO
══════════════════ */
#home {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-image-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,19,32,0.92) 0%,
    rgba(15,45,94,0.85) 45%,
    rgba(15,45,94,0.5) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  flex: 1;
  display: flex; align-items: center;
  padding: 9rem 5% 5rem;
  max-width: 1140px; margin: 0 auto; width: 100%;
}
.hero-text { max-width: 680px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(192,125,30,0.2);
  border: 1px solid rgba(192,125,30,0.5);
  color: var(--gold-lt);
  padding: 0.35rem 1rem; border-radius: 4px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-kicker::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-lt); }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero-h1 em {
  font-style: italic; color: var(--gold-lt);
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.72);
  line-height: 1.8; max-width: 540px; margin-bottom: 2.5rem;
}
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-gold {
  background: var(--gold-lt); color: var(--ink);
  padding: 0.9rem 2rem; border-radius: 6px;
  font-size: 0.9rem; font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-gold:hover { background: #F5B840; transform: translateY(-2px); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.hero-badge {
  font-size: 0.72rem; font-weight: 500;
  padding: 0.3rem 0.8rem; border-radius: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
}
/* floating stat card */
.hero-stat-bar {
  position: relative; z-index: 1;
  background: var(--white);
  border-top: 3px solid var(--gold);
}
.hero-stat-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: repeat(5, 1fr);
  divide: 1px solid var(--gray-lt);
}
.hero-stat-item {
  padding: 1.5rem 0;
  border-right: 1px solid var(--gray-lt);
  text-align: center;
}
.hero-stat-item:last-child { border-right: none; }
.hsi-n {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 700; color: var(--navy);
  display: block; line-height: 1;
}
.hsi-n span { color: var(--gold); }
.hsi-l { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.3rem; }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--navy); overflow: hidden;
  white-space: nowrap; padding: 0.8rem 0;
}
.ticker-inner {
  display: inline-flex; gap: 2.5rem;
  animation: ticker 32s linear infinite;
}
.ticker-item {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; gap: 0.75rem;
}
.tdot { color: var(--gold-lt); font-size: 0.6rem; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════════════
   ABOUT / BIO
══════════════════ */
#about {
  padding: 6rem 0;
  background: var(--white);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 5rem; align-items: start;
}
.section-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--gold);
}
.section-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink); line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.section-h2 em { color: var(--blue); font-style: italic; }
.bio-lead {
  font-size: 1.1rem; color: var(--ink);
  line-height: 1.8; font-weight: 500;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}
.bio-body p {
  font-size: 0.96rem; color: var(--gray);
  line-height: 1.85; margin-bottom: 1rem;
}
.bio-body p strong { color: var(--ink); font-weight: 600; }
.bio-body p em { color: var(--blue); font-style: italic; font-weight: 500; }

/* highlight boxes */
.bio-highlight {
  margin: 2rem 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.bh-card {
  padding: 1.25rem; border-radius: 10px;
  border-left: 3px solid;
}
.bh-card.gold  { background: var(--gold-pale); border-color: var(--gold); }
.bh-card.blue  { background: var(--blue-pale); border-color: var(--blue); }
.bh-card.teal  { background: var(--teal-pale); border-color: var(--teal); }
.bh-card.navy  { background: #EEF2FA; border-color: var(--navy); }
.bh-icon { font-size: 1.3rem; margin-bottom: 0.4rem; }
.bh-title { font-size: 0.82rem; font-weight: 700; color: var(--ink); margin-bottom: 0.25rem; }
.bh-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

/* right column */
.about-right {}
.profile-card {
  background: var(--navy); border-radius: 16px;
  overflow: hidden; margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.profile-img-wrap {
  height: 260px; position: relative; overflow: hidden;
}
.profile-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
}
.profile-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--navy), transparent);
}
.profile-body { padding: 1.5rem; }
.profile-name {
  font-family: var(--serif);
  font-size: 1.5rem; color: var(--white);
  font-weight: 700; margin-bottom: 0.2rem;
}
.profile-title { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.profile-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.06); border-radius: 8px; overflow: hidden; margin-bottom: 1.25rem; }
.ps-item { background: rgba(255,255,255,0.04); padding: 0.9rem; text-align: center; }
.ps-n { font-family: var(--serif); font-size: 1.6rem; color: var(--white); display: block; line-height: 1; }
.ps-l { font-size: 0.66rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }
.avail-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(13,122,106,0.2); border: 1px solid rgba(13,122,106,0.4);
  color: #4ADE80; padding: 0.5rem 1rem; border-radius: 6px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
}
.avail-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse 2.5s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px rgba(34,197,94,0.25)} 50%{box-shadow:0 0 0 6px rgba(34,197,94,0.1)} }

/* credentials list */
.creds-list { list-style: none; }
.creds-list li {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-lt);
}
.creds-list li:last-child { border-bottom: none; }
.cl-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gold-pale); border: 1px solid rgba(192,125,30,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.cl-body { }
.cl-name { font-size: 0.87rem; font-weight: 700; color: var(--ink); }
.cl-detail { font-size: 0.77rem; color: var(--gray); line-height: 1.4; }

/* ══════════════════
   WORK I TAKE
══════════════════ */
#work {
  padding: 6rem 0;
  background: var(--gray-pale);
}
.work-header { text-align: center; margin-bottom: 4rem; }
.work-header .section-h2 { margin-bottom: 0.75rem; }
.work-header .section-label { justify-content: center; }
.work-intro {
  font-size: 1rem; color: var(--gray);
  max-width: 580px; margin: 0 auto; line-height: 1.75;
}
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.work-card {
  background: var(--white); border-radius: 12px;
  padding: 2rem; border: 1px solid var(--gray-lt);
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.work-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
}
.work-card.c-gold::before   { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }
.work-card.c-blue::before   { background: linear-gradient(90deg, var(--blue), var(--blue-lt)); }
.work-card.c-navy::before   { background: linear-gradient(90deg, var(--navy), var(--blue)); }
.work-card.c-teal::before   { background: linear-gradient(90deg, var(--teal), #14B8A6); }
.work-card.c-red::before    { background: linear-gradient(90deg, var(--red), #EF4444); }
.work-card.c-purple::before { background: linear-gradient(90deg, #6D28D9, #8B5CF6); }
.work-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-4px);
  border-color: transparent;
}
.work-card-img {
  margin: -2rem -2rem 1.25rem -2rem;
  height: 160px;
  overflow: hidden;
}
.work-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.4s ease;
  display: block;
}
.work-card:hover .work-card-img img {
  transform: scale(1.05);
}
.work-card-num {
  font-family: var(--serif); font-style: italic;
  font-size: 2.75rem; color: var(--gray-lt);
  line-height: 1; margin-bottom: 0.5rem;
}
.work-card-title { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.6rem; }
.work-card-desc { font-size: 0.86rem; color: var(--gray); line-height: 1.75; }
.work-tag {
  display: inline-block; margin-top: 1rem;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 4px;
}
.work-tag.t-gold   { color: var(--gold);  background: var(--gold-pale); }
.work-tag.t-blue   { color: var(--blue);  background: var(--blue-pale); }
.work-tag.t-teal   { color: var(--teal);  background: var(--teal-pale); }
.work-tag.t-purple { color: #6D28D9; background: #EDE9FE; }

/* boardroom image strip */
.boardroom-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 3rem;
}
.bs-item {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 16/9; position: relative;
  box-shadow: var(--shadow-sm);
}
.bs-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.bs-item:hover img { transform: scale(1.04); }
.bs-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.6rem 0.9rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 0.72rem; color: rgba(255,255,255,0.85); font-weight: 500;
}

/* not a fit */
.not-fit-box {
  background: var(--white); border-radius: 10px;
  padding: 1.5rem 2rem;
  border: 1px solid var(--gray-lt);
  display: flex; align-items: flex-start; gap: 1.5rem;
}
.nf-label {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red);
  background: #FEF2F2; border: 1px solid #FECACA;
  padding: 0.25rem 0.65rem; border-radius: 4px;
  white-space: nowrap;
}
.nf-text { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ══════════════════
   TESTIMONIALS
══════════════════ */
.testimonials-section {
  padding: 6rem 0;
  background: var(--navy);
}
.testimonials-section .section-label { color: var(--gold); }
.testimonials-section .section-h2 { color: var(--white); }
.testimonials-section .section-h2 em { color: var(--gold-lt); }

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
/* Row 1: 3 cards, each span 2 of 6 columns */
.quote-card:nth-child(1) { grid-column: 1 / 3; }
.quote-card:nth-child(2) { grid-column: 3 / 5; }
.quote-card:nth-child(3) { grid-column: 5 / 7; }
/* Row 2: 2 cards centered — span 2 each, offset by 1 */
.quote-card:nth-child(4) { grid-column: 2 / 4; }
.quote-card:nth-child(5) { grid-column: 4 / 6; }

.quote-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(192,125,30,0.2);
  border-radius: 12px;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.quote-card:hover {
  border-color: rgba(192,125,30,0.5);
  background: rgba(255,255,255,0.07);
}
.quote-icon {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
  margin-top: -0.5rem;
}
.quote-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  flex: 1;
}
.quote-attr {
  border-top: 1px solid rgba(192,125,30,0.2);
  padding-top: 1rem;
}
.quote-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: 0.02em;
}
.quote-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}

/* ══════════════════
   CONTACT
══════════════════ */
#contact {
  padding: 6rem 0;
  background: var(--white);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 5rem; align-items: start;
}
.contact-h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
  color: var(--ink); line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 1rem;
}
.contact-h2 em { color: var(--blue); font-style: italic; }
.contact-sub { font-size: 1rem; color: var(--gray); line-height: 1.8; margin-bottom: 2rem; max-width: 480px; }
.contact-sub strong { color: var(--ink); font-weight: 600; }
.contact-methods { display: grid; gap: 1rem; margin-bottom: 2rem; }
.cm {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--gray-pale); border: 1px solid var(--gray-lt);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.cm:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); background: var(--gold-pale); }
.cm-ico {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.cm-ico.email  { background: var(--gold-pale); }
.cm-ico.li     { background: var(--blue-pale); color: var(--blue); font-weight: 900; font-size: 0.95rem; }
.cm-ico.tw     { background: #E7F3FF; font-weight: 900; }
.cm-lbl { font-size: 0.7rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.cm-val { font-size: 0.95rem; color: var(--ink); font-weight: 600; }
.contact-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-navy {
  background: var(--navy); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 6px;
  font-size: 0.9rem; font-weight: 600;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-navy:hover { background: var(--blue); transform: translateY(-2px); }
.btn-outline-dark {
  border: 1.5px solid var(--gray-lt); color: var(--ink);
  padding: 0.9rem 2rem; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500;
  transition: border-color 0.2s; display: inline-block;
}
.btn-outline-dark:hover { border-color: var(--navy); }

/* quick facts sidebar */
.qf-card {
  background: var(--navy); border-radius: 16px;
  padding: 2rem; position: sticky; top: 84px;
  box-shadow: var(--shadow-lg);
}
.qf-hdr {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-lt);
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.qf-row {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.qf-row:last-of-type { border-bottom: none; }
.qf-ico { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.qf-txt { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.55; }
.qf-txt strong { color: var(--white); font-weight: 600; display: block; font-size: 0.8rem; margin-bottom: 0.1rem; }
.qf-response {
  margin-top: 1.5rem; padding: 1rem; text-align: center;
  background: rgba(192,125,30,0.15); border: 1px solid rgba(192,125,30,0.3);
  border-radius: 8px;
}
.qfr-main { font-size: 0.85rem; color: var(--gold-lt); font-weight: 700; letter-spacing: 0.05em; }
.qfr-sub  { font-size: 0.73rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }

/* ══════════════════
   FOOTER
══════════════════ */
footer {
  background: var(--ink); padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-brand { font-family: var(--serif); font-size: 1.1rem; color: var(--white); font-weight: 700; }
.footer-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 0.2rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ══════════════════
   RESPONSIVE
══════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .profile-card { margin-bottom: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .qf-card { position: static; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero-stat-inner { grid-template-columns: repeat(3, 1fr); }
  .hero-stat-item:nth-child(4), .hero-stat-item:nth-child(5) { border-top: 1px solid var(--gray-lt); }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .boardroom-strip { grid-template-columns: 1fr; }
  .about-right { grid-template-columns: 1fr; }
  .bio-highlight { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.25rem; text-align: center; }
  .footer-links { justify-content: center; }
  .quotes-grid { grid-template-columns: 1fr; }
  .quote-card:nth-child(n) { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .work-grid { grid-template-columns: 1fr; }
  .hero-stat-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .contact-ctas { flex-direction: column; }
}
