/* ============================================
   GARRICK GIBSON — PORTFOLIO
   Brand: KPI / Steady Growth Marketing
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* ---- TOKENS ---- */
:root {
  --plum:       #2e1a22;
  --burgundy:   #6b1f2b;
  --accent:     #be2f1b;
  --cream:      #f4efea;
  --cream-light: #faf7f4;
  --cream-dark: #e8e0d8;
  --cream-deep: #d4c7b6;
  --white:      #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', sans-serif;
  --font-hand:    'Source Sans 3', sans-serif;

  --nav-h: 72px;
  --max-w: 1120px;
  --radius: 4px;
  --transition: 0.25s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--plum);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- NAV ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.5rem;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-nav.nav-scrolled {
  background: var(--plum);
  border-bottom-color: rgba(190,47,27,0.3);
}
.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.55rem;
}
.nav-brand .name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-pipe {
  color: rgba(244,239,234,0.4);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}
.nav-brand .title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(244,239,234,0.62);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(244,239,234,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ---- WORK DROPDOWN (desktop) ---- */
.has-dropdown {
  position: relative;
}
.nav-work-link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}
.nav-caret {
  width: 10px;
  height: 6px;
  transition: transform 0.2s;
  opacity: 0.65;
  flex-shrink: 0;
}
.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.875rem);
  right: 0;
  background: var(--plum);
  border: 1px solid rgba(190,47,27,0.35);
  border-radius: 4px;
  list-style: none;
  padding: 0.375rem 0;
  min-width: 215px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
  pointer-events: none;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
/* Invisible bridge fills the gap between "Work" and the dropdown panel */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -0.875rem;
  left: 0;
  right: 0;
  height: 0.875rem;
}
.nav-dropdown li { border: none; }
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.55rem 1.125rem;
  font-size: 0.78rem;
  color: rgba(244,239,234,0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
}
.nav-dropdown a:hover {
  color: var(--cream);
  background: rgba(255,255,255,0.07);
}
.nav-dropdown a::after { display: none; }
.cs-num {
  font-size: 0.62rem;
  opacity: 0.5;
  letter-spacing: 0.1em;
  font-weight: 600;
  min-width: 1.25rem;
}

/* ---- HAMBURGER TOGGLE (hidden on desktop) ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- PAGE OFFSET ---- */
.page-content {
  padding-top: var(--nav-h);
}

/* ---- HERO (dark) ---- */
.hero {
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 40%), url('../images/hero-bg.jpg') center/cover no-repeat;
  margin-top: calc(-1 * var(--nav-h));
  padding: calc(4rem + var(--nav-h)) 2.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,31,43,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.7s ease 0.1s forwards;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  max-width: 1000px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease 0.25s forwards;
}
.hero-headline em {
  font-style: italic;
  color: rgba(244,239,234,0.65);
}
.hero-sub {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  color: rgba(244,239,234,0.72);
  max-width: 680px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.7s ease 0.4s forwards;
}
.hero-cta-row {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.7s ease 0.55s forwards;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
}
.btn-primary:hover {
  background: #d93820;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(190,47,27,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244,239,234,0.35);
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(244,239,234,0.08);
}
.btn-outline-dark {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--burgundy);
}
.btn-outline-dark:hover {
  background: var(--burgundy);
  color: var(--cream);
}

/* ---- SECTION SHARED ---- */
.section {
  padding: 5rem 2.5rem;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--plum);
  line-height: 1.2;
  max-width: 1100px;
}
.section-headline.light { color: var(--cream); }
.section-divider {
  width: 48px; height: 3px;
  background: var(--accent);
  margin: 1.25rem 0 1.75rem;
  border: none;
}

/* ---- DARK-BACKGROUND LABELS (plum sections) ---- */
.arc-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ---- THROUGH-LINE QUOTE STRIP ---- */
/* Background: warm tan — sits between content and dark footer */
/* position: relative is intentional — ready for optional bg pattern overlay */
.quote-strip {
  background: var(--cream-dark);
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.quote-strip-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote-strip-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: var(--plum);
  line-height: 1.6;
  font-weight: 400;
  margin-top: 1rem;
}

/* ---- CASE STUDY CARDS ---- */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.cs-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(46,26,34,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.cs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(46,26,34,0.13);
}
.cs-card-thumb {
  height: 220px;
  background: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.cs-card-thumb .thumb-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(244,239,234,0.25);
  text-align: center;
  padding: 1rem;
  line-height: 1.3;
}
.cs-card-thumb .cs-number {
  position: absolute;
  top: 1rem; left: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cs-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cs-card-company {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.cs-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1.3;
  margin-bottom: 0.85rem;
}
.cs-card-desc {
  font-size: 0.925rem;
  color: #5a4a50;
  line-height: 1.65;
  flex: 1;
}
.cs-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  background: var(--cream);
  color: var(--burgundy);
  border: 1px solid rgba(107,31,43,0.2);
}
.cs-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  transition: gap var(--transition);
}
.cs-card-link:hover { gap: 0.7rem; }
.cs-card-link svg { width: 14px; height: 14px; }

/* ---- THUMB ACCENT COLORS ---- */
.thumb-1 { background: url('../images/scg-card-thumb.png') center/cover no-repeat; }
.thumb-2 { background: url('../images/cvs-card-thumb.png') center/cover no-repeat; }
.thumb-3 { background: url('../images/ots-card-thumb.png') center/cover no-repeat; }
.thumb-4 { background: url('../images/scg-brand-card-thumb.jpg') center/cover no-repeat; }

/* ---- BIO SECTION ---- */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.bio-photo-col {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.bio-photo-frame {
  aspect-ratio: 4/5;
  background: var(--plum);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bio-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(190,47,27,0.15), transparent);
}
.bio-photo-placeholder {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(244,239,234,0.3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
}
.bio-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.bio-content p {
  font-size: 1.0625rem;
  color: #4a3840;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.bio-content p strong {
  color: var(--plum);
  font-weight: 600;
}
.bio-pitch {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--accent);
  background: rgba(190,47,27,0.04);
  border-radius: 0 4px 4px 0;
}
.bio-pitch p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--plum);
  margin: 0;
  line-height: 1.6;
}

/* ---- EXPERIENCE PAGE ---- */
.exp-list {
  margin-top: 3rem;
}
.exp-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(46,26,34,0.12);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.exp-item.visible { opacity: 1; transform: translateY(0); }
.exp-date {
  padding-top: 0.25rem;
}
.exp-date-range {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}
.exp-company {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a6070;
}
.exp-role {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.exp-body p {
  font-size: 0.975rem;
  color: #4a3840;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* ---- CASE STUDY PAGE ---- */
.cs-hero {
  background: var(--plum);
  margin-top: calc(-1 * var(--nav-h));
  padding: calc(3.5rem + var(--nav-h)) 2.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.cs-hero--scg { background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 40%), url('../images/hero-scg.jpg') center/cover no-repeat; }
.cs-hero--cvs { background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 40%), url('../images/hero-cvs.jpg') center/cover no-repeat; }
.cs-hero--ots { background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 40%), url('../images/hero-ots.jpg') center/cover no-repeat; }
.cs-hero--scg-brand { background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 40%), url('../images/hero-scg-brand.jpg') center/cover no-repeat; }
.cs-hero::before {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,31,43,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,239,234,0.5);
  margin-bottom: 2.5rem;
  transition: color var(--transition);
}
.cs-back:hover { color: var(--cream); }
.cs-back svg { width: 14px; height: 14px; }
.cs-hero-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.cs-meta-pill {
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(244,239,234,0.2);
  color: rgba(244,239,234,0.65);
}
.cs-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 1.25rem;
}
.cs-hero-summary {
  font-size: 1.1rem;
  color: rgba(244,239,234,0.72);
  max-width: 620px;
  line-height: 1.7;
}

/* ---- ARTIFACT PLACEHOLDER ---- */
.artifact-zone {
  background: var(--white);
  border: 2px dashed rgba(107,31,43,0.25);
  border-radius: 6px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  margin: 1.75rem 0;
}
.artifact-zone .az-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(107,31,43,0.07);
  display: flex; align-items: center; justify-content: center;
}
.artifact-zone .az-icon svg { width: 22px; height: 22px; color: var(--burgundy); opacity: 0.5; }
.artifact-zone .az-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}
.artifact-zone .az-desc {
  font-size: 0.825rem;
  color: #7a6070;
}

/* ---- ARTIFACT LIGHTBOX ---- */
.artifact-zone img {
  cursor: zoom-in;
  display: block;
  width: 100%;
  border-radius: 6px;
  transition: opacity var(--transition);
}
.artifact-zone img:hover { opacity: 0.93; }

.az-caption {
  font-size: 0.78rem;
  font-weight: 400;
  color: #7a6070;
  line-height: 1.55;
  margin-top: 0.65rem;
  padding: 0 0.25rem;
  font-style: italic;
}

.az-zoom-hint {
  font-size: 0.7rem;
  font-weight: 600;
  color: #9a7a88;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin: 0.55rem 0 1.75rem;
  opacity: 0.65;
}

/* Overlay */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
  padding: 2rem;
}
.lb-overlay.lb-open {
  opacity: 1;
  pointer-events: all;
}
.lb-overlay img {
  max-width: 95vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.7);
  cursor: zoom-out;
}
.lb-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(244, 239, 234, 0.7);
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.lb-close:hover { color: var(--cream); }

/* ---- CS BODY SECTIONS ---- */
.cs-section {
  padding: 4rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.cs-section + .cs-section {
  padding-top: 0;
}
.cs-section-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.cs-section-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.cs-section p {
  font-size: 1rem;
  color: #4a3840;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.cs-section p strong {
  color: var(--plum);
  font-weight: 600;
}
.cs-section hr {
  border: none;
  border-top: 1px solid rgba(46,26,34,0.1);
  margin: 3rem 0;
}

/* ---- TRANSFORMATION ARC STRIP ---- */
.arc-strip {
  background: var(--cream-dark);
  padding: 4rem 2.5rem;
}
.arc-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.arc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}
.arc-steps::before {
  content: '';
  position: absolute;
  top: 1.5rem; left: calc(100%/6);
  right: calc(100%/6);
  height: 1px;
  background: rgba(46,26,34,0.15);
}
.arc-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.arc-step-num {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.arc-step:first-child .arc-step-num { background: var(--cream-deep); color: var(--plum); }
.arc-step:last-child .arc-step-num { background: var(--accent); color: var(--cream); }
.arc-step-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 0.5rem;
}
.arc-step-desc {
  font-size: 1rem;
  color: rgba(46,26,34,0.75);
  line-height: 1.6;
}

/* ---- PULL QUOTE ---- */
.pull-quote {
  margin: 2.5rem 0;
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--accent);
  background: rgba(190,47,27,0.04);
  border-radius: 0 6px 6px 0;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.2rem !important;
  font-style: italic;
  color: var(--plum) !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--plum);
  padding: 3rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(190,47,27,0.2);
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.footer-sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(244,239,234,0.65);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,239,234,0.60);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  margin-top: 2rem;
  font-size: 0.775rem;
  color: rgba(244,239,234,0.55);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  /* Mobile nav — light background */
  .site-nav {
    background: var(--cream);
    border-bottom: 1px solid rgba(46,26,34,0.1);
  }
  .site-nav.nav-scrolled {
    background: var(--cream);
    border-bottom-color: rgba(46,26,34,0.15);
  }

  /* Mobile nav brand — two-line stacked, no pipe, dark text */
  .nav-brand { flex-direction: column; align-items: flex-start; gap: 1px; }
  .nav-brand .name { font-size: 1rem; color: var(--plum); }
  .nav-pipe { display: none; }
  .nav-brand .title { font-size: 0.7rem; letter-spacing: 0.12em; color: rgba(46,26,34,0.70); }

  /* Hamburger — dark lines */
  .nav-toggle span { background: var(--plum); }

  /* Mobile nav toggle */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: var(--cream-dark);
    border-bottom: 2px solid rgba(46,26,34,0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 600px; }
  .nav-links li { border-bottom: 1px solid rgba(46,26,34,0.07); }
  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.07em;
    color: rgba(46,26,34,0.75);
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--plum); background: rgba(46,26,34,0.05); }
  .nav-links a::after { display: none; }

  /* Mobile dropdown overrides */
  .has-dropdown { position: static; }
  .nav-caret { opacity: 0.55; }
  .nav-work-link { display: flex; justify-content: space-between; align-items: center; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(46,26,34,0.04);
    padding: 0;
    min-width: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    pointer-events: none;
  }
  .nav-dropdown.open {
    max-height: 200px;
    pointer-events: auto;
  }
  .nav-dropdown li { border-bottom: 1px solid rgba(46,26,34,0.05); }
  .nav-dropdown a {
    padding: 0.75rem 2rem 0.75rem 2.75rem;
    font-size: 0.85rem;
    color: rgba(46,26,34,0.6);
    background: none;
    gap: 0.5rem;
    white-space: normal;
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }
  .nav-dropdown a:hover { color: var(--plum); background: rgba(46,26,34,0.05); }
  .cs-num { color: rgba(46,26,34,0.35); }

  /* Layout */
  .bio-grid { grid-template-columns: 1fr; gap: 3rem; }
  .bio-photo-col { position: static; }
  .exp-item { grid-template-columns: 1fr; gap: 0.75rem; }
  .arc-steps { grid-template-columns: 1fr; }
  .arc-steps::before { display: none; }
  .az-social-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 540px) {
  .site-nav { padding: 0 1.25rem; }
  .hero, .section, .cs-hero, .arc-strip { padding-left: 1.25rem; padding-right: 1.25rem; }
  .cs-section { padding-left: 1.25rem; padding-right: 1.25rem; }
  .nav-links { gap: 0.875rem; }
}
