/* ============================================================
   Martha Asselin Portfolio — Design System
   ============================================================ */

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

html, body { overflow-x: hidden; max-width: 100%; }

:root {
  /* ── Core palette ── */
  --ink:          #1a2828;
  --teal:         #2d6b6b;
  --teal-light:   #3d8a8a;
  --teal-pale:    #d4e8e8;
  --gold:         #A36A00;
  --gold-deep:    #9a6d10;
  --gold-pale:    #f0deb0;
  --olive:        #4a5a28;
  --olive-pale:   #dde5cc;
  --cream:        #f6f2eb;
  --cream-dark:   #ede7db;
  --mid:          #556666;
  --mid-on-dark:  #8aacac;
  --muted:        #4a6464;
  --light:        #a0b4b4;
  --white:        #faf8f4;
  /* ── Type ── */
  --serif:        'Playfair Display', Georgia, serif;
  --display:      'Hanken Grotesk', system-ui, sans-serif;
  --body:         'Hanken Grotesk', system-ui, sans-serif;
  /* ── Unified radius ── */
  --radius:       16px;
}

html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--ink); font-family: var(--body); font-weight: 400; overflow-x: hidden; cursor: default; }
a, button, label, [role="button"] { cursor: default; }


/* ============================================================
   FOCUS STATES
   ============================================================ */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 200; width: 0%; transition: width .1s linear;
}


/* ============================================================


/* ============================================================
   NAV — Homepage (fixed)
   ============================================================ */
nav.nav-home {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 56px;
  border-bottom: 1px solid var(--teal-pale);
  background: var(--cream);
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: padding .35s, box-shadow .35s, background .35s;
}
nav.nav-home.scrolled {
  padding: 13px 56px;
  box-shadow: 0 1px 0 var(--teal-pale), 0 4px 28px rgba(26,40,40,.07);
  background: rgba(246,242,235,.94);
  backdrop-filter: blur(14px);
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo svg { }
.nav-name { font-family: var(--display); font-size: 15px; font-weight: 500; color: var(--ink); letter-spacing: -.01em; }
.nav-right { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 30px; list-style: none; font-size: 11px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; font-family: var(--body); }
.nav-links a { color: var(--teal); text-decoration: none; position: relative; padding-bottom: 3px; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .25s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.hero-avail { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 300; letter-spacing: .04em; color: var(--muted); font-family: var(--body); margin-top: 12px; }
.nav-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }


/* ============================================================
   NAV — Case Study (sticky)
   ============================================================ */
nav.nav-case {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 56px;
  border-bottom: 1px solid var(--teal-pale);
  background: var(--cream);
  position: sticky; top: 0; z-index: 100;
}
.nav-back {
  font-family: var(--body); font-size: 11px; font-weight: 400; letter-spacing: .08em;
  text-transform: uppercase; color: var(--teal); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: color .2s;
}
.nav-back:hover { color: var(--gold); }
.nav-back::before { content: '←'; font-size: 14px; }
.nav-case-name {
  font-family: var(--display); font-size: 14px; font-weight: 500;
  color: var(--ink); letter-spacing: -.01em; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-case-name svg { flex-shrink: 0; }
.nav-next {
  font-family: var(--body); font-size: 11px; font-weight: 400; letter-spacing: .08em;
  text-transform: uppercase; color: var(--teal); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: color .2s;
}
.nav-next:hover { color: var(--gold); }
.nav-next::after { content: '→'; font-size: 14px; }


/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .22s; }
.d3 { transition-delay: .34s; }


/* ============================================================
   HERO
   ============================================================ */
.hero-wrap { max-width: 1160px; margin: 0 auto; padding: 0 56px; }
.hero {
  display: grid; grid-template-columns: 1fr 300px; gap: 64px;
  align-items: stretch; padding: 148px 0 96px;
}

@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

.hero-label {
  font-family: var(--body); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp .7s .15s forwards;
}
.hero-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--teal-light); }

.hero h1 {
  font-family: var(--serif); font-size: clamp(32px,3.8vw,50px); font-weight: 400;
  line-height: 1.12; letter-spacing: -.02em; margin-bottom: 28px; max-width: 660px;
  opacity: 0; animation: fadeUp .8s .35s forwards;
}
.hero h1 em { font-style: italic; color: var(--teal); font-weight: 400; }

.hero-sub {
  font-family: var(--body); font-size: 15px; color: var(--mid);
  max-width: 430px; line-height: 1.8; margin-bottom: 44px;
  opacity: 0; animation: fadeUp .7s .6s forwards;
}
.hero-ctas {
  display: flex; gap: 20px; align-items: center;
  opacity: 0; animation: fadeUp .7s .78s forwards;
}

.btn-primary {
  background: var(--teal); color: var(--white); padding: 13px 28px;
  font-family: var(--body); font-size: 11px; font-weight: 500;
  letter-spacing: .09em; text-transform: uppercase; text-decoration: none;
  display: inline-block; position: relative; overflow: hidden; border-radius: 8px;
  border: none;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.4,0,.2,1); border-radius: 8px;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  font-family: var(--body); font-size: 11px; color: var(--teal); font-weight: 500;
  text-decoration: none; letter-spacing: .08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  transition: color .2s; white-space: nowrap;
}
.btn-secondary::after { content: '→'; font-size: 16px; }
.btn-secondary:hover { color: var(--gold); }


/* ============================================================
   HERO PHOTO
   ============================================================ */
.hero-photo-wrap { position: relative; opacity: 0; animation: fadeUp .9s .35s forwards; display: flex; flex-direction: column; }
.photo-clip { overflow: hidden; border-radius: var(--radius); position: relative; flex: 1; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; filter: saturate(.9); }

.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,40,40,.65) 0%, rgba(26,40,40,.18) 55%, transparent 100%);
  border-radius: var(--radius); opacity: 0; transition: opacity .4s ease;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; pointer-events: none;
}
.photo-clip:hover .photo-overlay { opacity: 1; }

.overlay-card {
  transform: translateY(12px);
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .4s ease;
  opacity: 0; padding-left: 4px;
}
.photo-clip:hover .overlay-card { transform: translateY(0); opacity: 1; }

.overlay-location { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--cream); letter-spacing: -.02em; margin-bottom: 6px; line-height: 1.1; }
.overlay-sub { font-family: var(--body); font-size: 11px; font-weight: 500; color: var(--cream); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; padding-left: 2px; }
.overlay-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.overlay-tag {
  font-family: var(--body); font-size: 10px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
  border: 1px solid rgba(246,242,235,.25); color: var(--cream);
  background: rgba(246,242,235,.1); backdrop-filter: blur(4px);
}
.overlay-tag.gold { border-color: rgba(163,106,0,.6); color: var(--gold); background: rgba(163,106,0,.12); }
.overlay-hint {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--body); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(246,242,235,.5);
  opacity: 0; transition: opacity .3s .1s;
}
.photo-clip:not(:hover) .overlay-hint { opacity: 1; transition-delay: .8s; }


/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap { overflow: hidden; padding: 14px 0; background: var(--ink); }
.ticker { display: flex; white-space: nowrap; animation: ticker 60s linear infinite; }
.ticker-item { font-family: var(--body); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); padding: 0 36px; flex-shrink: 0; }
.ticker-item .dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-right: 10px; vertical-align: middle; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }


/* ============================================================
   WORK SECTION
   ============================================================ */
.section { padding: 80px 56px; max-width: 1160px; margin: 0 auto; }
.section-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 34px; padding-bottom: 0;
}
.section-label { font-family: var(--body); font-size: 11px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--teal-light); }
.section-count { font-family: var(--body); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); }

.project-row {
  display: grid; grid-template-columns: 60px 1fr 290px; gap: 36px;
  align-items: center; padding: 42px 16px;
  border-top: 1px solid var(--teal-pale);
  position: relative; cursor: default;
  transition: background .3s, padding-left .3s;
}
.project-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--gold);
  transition: width .3s ease; border-radius: 0 2px 2px 0;
}
.section > a:last-of-type .project-row { border-bottom: 1px solid var(--teal-pale); }
.project-row:hover { background: rgba(45,107,107,.04); padding-left: 28px; }
.project-row:hover::before { width: 3px; }
.project-row:hover .proj-arrow { opacity: 1; transform: translate(4px,-4px); }
.project-row:hover .proj-visual { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(26,40,40,.1); }

.proj-num { font-family: var(--serif); font-size: 13px; font-style: italic; font-weight: 400; color: var(--muted); align-self: start; padding-top: 5px; }

.proj-tags { display: flex; gap: 7px; margin-bottom: 13px; flex-wrap: wrap; }
.tag {
  font-family: var(--body); font-size: 10px; font-weight: 500; letter-spacing: .10em;
  text-transform: uppercase; color: var(--olive); border: 1px solid var(--olive-pale);
  padding: 3px 10px; border-radius: 20px; background: rgba(221,229,204,.5);
  transition: background .2s, border-color .2s;
}
.project-row:hover .tag { background: rgba(221,229,204,.8); border-color: var(--olive); }

.proj-title { font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.18; margin-bottom: 11px; letter-spacing: -.02em; color: var(--ink); }
.proj-desc { font-family: var(--body); font-size: 15px; color: var(--mid); line-height: 1.72; max-width: 450px; }
.proj-meta { font-family: var(--body); font-size: 11px; color: var(--muted); margin-top: 15px; letter-spacing: .04em; }
.proj-arrow { position: absolute; top: 10px; right: 10px; font-size: 18px; color: var(--gold); opacity: 0; transition: all .25s; }

.proj-visual {
  height: 200px; border-radius: var(--radius); overflow: hidden;
  position: relative; transition: transform .35s ease, box-shadow .35s ease;
  background: var(--cream-dark);
}
.proj-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.vis-01 { background: #f6f6f6; }
.proj-visual.vis-01 img { inset: 24px; width: calc(100% - 48px); height: calc(100% - 48px); object-fit: contain; object-position: center; }
.vis-02 { background: var(--olive-pale); }
.vis-03 { background: var(--gold-pale); }

.stat-badge {
  background: var(--white); padding: 7px 13px; border-radius: 10px;
  font-family: var(--body); font-size: 11px; font-weight: 600; color: var(--teal);
  box-shadow: 0 2px 14px rgba(0,0,0,.1);
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  min-width: 110px; text-align: center;
}
.proj-visual-label { position: absolute; top: 13px; left: 13px; font-family: var(--serif); font-size: 10px; font-style: italic; color: var(--ink); opacity: .5; }


/* ============================================================
   APPROACH
   ============================================================ */
.approach { background: var(--ink); color: var(--cream); padding: 88px 56px; }
.approach-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.approach h2 { font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1.14; letter-spacing: -.02em; color: var(--cream); }
.approach h2 em { font-style: italic; color: var(--gold); font-weight: 400; font-family: var(--serif); }
.approach-right p { font-family: var(--body); font-size: 15px; line-height: 1.82; color: var(--mid-on-dark); margin-bottom: 22px; }
.approach-right p strong { color: var(--cream); font-weight: 500; }
.approach-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.pill {
  border: 1px solid rgba(90,106,53,.6); color: var(--olive-pale);
  padding: 5px 14px; border-radius: 20px;
  font-family: var(--body); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  transition: background .2s, border-color .2s; cursor: default;
}
.pill:hover { background: rgba(90,106,53,.2); border-color: rgba(221,229,204,.8); }


/* ============================================================
   HOMEPAGE SKILLS SECTION
   ============================================================ */
.hp-skills { background: var(--cream); padding: 88px 0; }
.hp-skills-inner { max-width: 1160px; margin: 0 auto; padding: 0 56px; }
.hp-skills-kicker {
  font-family: var(--body); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hp-skills-kicker::before { content: ''; display: block; width: 24px; height: 1px; background: var(--teal-light); }
.hp-skills h2 {
  font-family: var(--serif); font-size: 38px; font-weight: 400;
  line-height: 1.15; letter-spacing: -.02em; color: var(--ink); margin-bottom: 48px;
}
.hp-skills h2 em { font-style: italic; color: var(--teal); font-weight: 400; font-family: var(--serif); }
.hp-skills .skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 0; }
.hp-skills .skill-card {
  background: var(--white); border: 1px solid var(--teal-pale);
  border-radius: 16px; padding: 32px;
  transition: box-shadow .3s, transform .3s;
}
.hp-skills .skill-card:hover { box-shadow: 0 8px 32px rgba(45,107,107,.1); transform: translateY(-3px); }
.hp-skills .skill-icon {
  width: 48px; height: 48px; background: var(--teal-pale);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.hp-skills .skill-icon svg { width: 24px; height: 24px; }
.hp-skills .skill-title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 17px; font-weight: 600; letter-spacing: -.01em;
  color: var(--ink); margin-bottom: 12px;
}
.hp-skills .skill-desc { font-family: var(--body); font-size: 14px; line-height: 1.75; color: var(--mid); }

@media (max-width: 768px) {
  .hp-skills { padding: 64px 0; }
  .hp-skills-inner { padding: 0 24px; }
  .hp-skills .skills-grid { grid-template-columns: 1fr; }
  .hp-skills .skill-card { padding: 24px; }
  .hp-skills h2 { font-size: 28px; }
}
@media (max-width: 390px) {
  .hp-skills { padding: 40px 0; }
  .hp-skills-inner { padding: 0 20px; }
  .hp-skills-kicker { font-size: 10px; }
  .hp-skills h2 { font-size: 24px; }
  .hp-skills .skill-card { padding: 20px; }
  .hp-skills .skill-title { font-size: 15px; }
  .hp-skills .skill-desc { font-size: 13px; }
  .hp-skills .skill-card:hover { transform: none; box-shadow: none; }
}


/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  padding: 88px 56px; max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 64px;
  align-items: center; border-bottom: 1px solid var(--teal-pale);
}
.about-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center top; border-radius: var(--radius); transform: scaleX(-1); transition: none !important; }
.about-right h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1.18; margin-bottom: 18px; letter-spacing: -.02em; color: var(--ink); }
.about-right h3 em { font-style: italic; color: var(--teal); font-weight: 400; font-family: var(--serif); }
.about-right p { font-family: var(--body); font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.about-link {
  font-family: var(--body); font-size: 11px; color: #C4922A; text-decoration: none;
  letter-spacing: .08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  transition: color .2s; white-space: nowrap;
}
.about-link::after { content: '→'; font-size: 16px; }
.about-link:hover { color: var(--cream); }


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 88px 56px 72px; max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.contact-left h2 { font-family: var(--serif); font-size: 38px; font-weight: 500; line-height: 1.14; letter-spacing: -.02em; margin-bottom: 28px; color: var(--ink); }
.contact-left h2 em { font-style: italic; color: var(--gold-deep); font-weight: 400; font-family: var(--serif); }
.contact-email {
  font-family: var(--serif); font-size: 17px; font-style: italic; font-weight: 400;
  color: var(--teal); text-decoration: none;
  border-bottom: 1px solid var(--teal-pale); padding-bottom: 3px;
  transition: border-color .2s, color .2s;
  background: none; border-top: none; border-left: none; border-right: none;
}
.contact-email:hover { border-bottom-color: var(--gold); color: var(--gold-deep); }

/* Copy toast */
.copy-toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--ink); color: var(--white);
  padding: 10px 22px; border-radius: 40px;
  font-family: var(--body); font-size: 13px; letter-spacing: .02em;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 9999; white-space: nowrap;
}
.copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.contact-right { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 28px; }
.cg h4 { font-family: var(--body); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; font-weight: 500; }
.cg p, .cg a { font-family: var(--body); color: var(--mid); text-decoration: none; line-height: 1.9; display: block; transition: color .2s; }
.cg a { color: #2d6b6b; }
.cg a:hover { color: #C4922A; }
.link-arrow { font-family: var(--body); font-style: normal; font-size: 13px; font-weight: 400; }


/* ============================================================
   PALETTE STRIP
   ============================================================ */
.palette-strip {
  background: var(--cream-dark); padding: 24px 56px;
  display: flex; align-items: center; gap: 32px;
  border-top: 1px solid var(--teal-pale); font-family: var(--body);
  overflow: visible; position: relative;
}
.palette-strip h5 { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 500; margin-right: 4px; }
.swatch-group { display: flex; gap: 22px; align-items: center; }

.swatch {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative; cursor: default;
}
.swatch-circle {
  width: 30px; height: 30px; border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.swatch:hover .swatch-circle {
  transform: scale(1.45);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.swatch > span { font-size: 10px; letter-spacing: .05em; color: var(--muted); transition: color .2s; }
.swatch:hover > span { color: var(--ink); }

/* Tooltip card */
.swatch-detail {
  position: absolute; bottom: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--ink); border-radius: 8px; padding: 9px 13px;
  text-align: center; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 10;
}
.swatch-detail::after {
  content: ''; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--ink);
}
.swatch:hover .swatch-detail { opacity: 1; transform: translateX(-50%) translateY(0); }
.swatch-hex {
  display: block; font-family: var(--body); font-size: 11px;
  color: var(--gold); letter-spacing: .06em; margin-bottom: 3px;
}
.swatch-use {
  display: block; font-family: var(--body); font-size: 10px;
  color: var(--cream); letter-spacing: .03em;
}

/* "Copied!" flash */
.copied-flash {
  position: absolute; bottom: calc(100% + 16px); left: 50%;
  transform: translateX(-50%);
  background: var(--teal); color: var(--white); border-radius: 6px;
  padding: 5px 11px; font-family: var(--body); font-size: 10px;
  letter-spacing: .09em; text-transform: uppercase; white-space: nowrap;
  pointer-events: none; z-index: 11;
  animation: copiedFlash 1s ease forwards;
}
@keyframes copiedFlash {
  0%   { opacity: 0; transform: translateX(-50%) translateY(4px); }
  15%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  70%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(-6px); }
}



/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink); padding: 22px 56px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--body); font-size: 11px; color: rgba(246,242,235,0.5); letter-spacing: .05em;
}
.footer-built { color: var(--gold); }


/* ============================================================
   CASE STUDY — Layout tokens
   ============================================================ */
:root { --max: 800px; }

.case-hero { max-width: var(--max); margin: 0 auto; padding: 112px 40px 48px; }
.case-tag {
  font-family: var(--body); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.case-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--teal-light); }
.case-hero h1 { font-family: var(--serif); font-size: clamp(34px,5vw,54px); font-weight: 400; line-height: 1.1; letter-spacing: -.025em; margin-bottom: 20px; }
.case-hero h1 em { font-style: italic; color: var(--teal); }
.case-hero .lead { font-family: var(--body); font-size: 16px; color: var(--mid); line-height: 1.8; max-width: 620px; margin-bottom: 48px; }

.meta-row { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--teal-pale); border-bottom: 1px solid var(--teal-pale); }
.meta-item { padding: 20px 0; border-right: 1px solid var(--teal-pale); }
.meta-item:last-child { border-right: none; }
.meta-label { font-family: var(--body); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.meta-value { font-family: var(--display); font-size: 13px; font-weight: 500; color: var(--ink); line-height: 1.5; }

/* Hero — widest, anchors the page */
.img-full { max-width: 1100px; margin: 56px auto; padding: 0 40px; overflow: hidden; }
.img-full img { width: 100%; display: block; border-radius: var(--radius); }

/* Multi-state mockup spreads */
.img-wide { max-width: 920px; margin: 48px auto; padding: 0 40px; overflow: hidden; }
.img-wide img { width: 100%; display: block; border-radius: var(--radius); }

/* Single screen / portrait mockup */
.img-contained { max-width: 640px; margin: 40px auto; padding: 0 40px; }
.img-contained img { width: 100%; display: block; border-radius: var(--radius); }
.img-caption { font-family: var(--body); font-size: 13px; color: var(--muted); letter-spacing: .02em; margin-top: 12px; text-align: center; font-style: italic; }

.img-two { max-width: var(--max); margin: 40px auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.img-two img { width: 100%; display: block; border-radius: var(--radius); }

/* Brand / supporting illustrations */
.img-brand { max-width: var(--max); margin: 32px auto 48px; padding: 0 40px; }
.img-brand img { width: 100%; display: block; border-radius: var(--radius); }

/* Persona card */
.persona-wrap { max-width: var(--max); margin: 0 auto 48px; padding: 0 40px; }
.persona-card { background: var(--cream); border-radius: var(--radius); padding: 40px; }
.persona-top { display: flex; align-items: center; gap: 28px; margin-bottom: 32px; }
.persona-photo { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.persona-tag { font-family: var(--body); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 8px; }
.persona-name { font-family: var(--serif); font-size: 32px; font-weight: 400; color: var(--ink); letter-spacing: -.02em; line-height: 1; margin-bottom: 8px; }
.persona-role { font-family: var(--body); font-size: 15px; color: var(--mid); margin: 0; }
.persona-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--teal-pale); border-bottom: 1px solid var(--teal-pale); padding: 24px 0; margin-bottom: 28px; }
.persona-stat { padding: 0 24px; }
.persona-stat:first-child { padding-left: 0; }
.persona-stat + .persona-stat { border-left: 1px solid var(--teal-pale); }
.persona-stat-label { font-family: var(--body); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 6px; }
.persona-stat-value { font-family: var(--body); font-size: 15px; color: var(--ink); font-weight: 500; margin: 0; }
.persona-quote { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--mid); line-height: 1.65; margin: 0; border-left: 3px solid var(--gold); padding-left: 20px; }

/* Competitive audit */
.comp-audit { max-width: var(--max); margin: 0 auto 48px; padding: 0 40px; }
.comp-audit-label { font-family: var(--body); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 20px; }
.comp-audit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.comp-card { background: var(--cream); border-radius: var(--radius); padding: 28px 22px; }
.comp-stat { margin-bottom: 12px; line-height: 1; }
.comp-num { font-family: var(--serif); font-size: 52px; font-weight: 400; color: var(--teal); letter-spacing: -.03em; }
.comp-denom { font-family: var(--body); font-size: 14px; color: var(--mid); }
.comp-finding { font-family: var(--body); font-size: 14px; color: var(--mid); line-height: 1.6; margin: 0; }

/* Research charts */
.charts-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: var(--max); margin: 0 auto 48px; padding: 0 40px; }
.chart-card { background: var(--cream); border-radius: var(--radius); padding: 36px 32px 28px; }
.chart-kicker { font-family: var(--body); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--teal); margin-bottom: 24px; text-align: center; }
.chart-canvas-wrap { position: relative; height: 340px; }
.chart-card .img-caption { text-align: center; margin-top: 16px; }

.case-section { max-width: var(--max); margin: 0 auto; padding: 0 40px 72px; }
.section-num { font-family: var(--body); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.section-kicker { font-family: var(--body); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; font-weight: 500; }
.case-section h2 { font-family: var(--serif); font-size: clamp(24px,3.5vw,36px); font-weight: 400; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 24px; }
.case-section h2 em { font-style: italic; color: var(--gold-deep); }
.case-section p { font-family: var(--body); font-size: 15px; color: var(--mid); line-height: 1.82; margin-bottom: 20px; }
.case-section p strong { color: var(--ink); font-weight: 500; }
.case-section p:last-child { margin-bottom: 0; }

.divider { max-width: var(--max); margin: 0 auto 72px; padding: 0 40px; }
.divider hr { border: none; border-top: 1px solid var(--teal-pale); }

.ai-callout { background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: 28px 32px; margin: 28px 0; }
.ai-label { font-family: var(--body); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 500; display: flex; align-items: center; gap: 7px; }
.ai-label::before { content: '✦'; }
.ai-callout p { font-family: var(--body); font-size: 15px; line-height: 1.78; color: rgba(246,242,235,.72); margin: 0; }
.ai-callout p strong { color: var(--cream); font-weight: 400; }

.pull-quote { padding: 22px 28px; margin: 28px 0; background: rgba(196,146,42,.06); border-radius: var(--radius); }
.pull-quote p { font-family: var(--serif); font-size: 17px; font-style: italic; color: var(--ink); line-height: 1.6; margin: 0; }

.decisions { margin-top: 28px; }
.decision { padding: 24px 0; border-bottom: 1px solid var(--teal-pale); }
.decision:last-child { border-bottom: none; }
.decision-num { font-family: var(--body); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; font-weight: 500; }
.decision h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.2; margin-bottom: 10px; }
.decision h3 em { font-style: italic; color: var(--teal); }
.decision p { font-family: var(--body); font-size: 15px; color: var(--mid); line-height: 1.75; margin: 0; }

.metric-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.metric-item {
  background: var(--white); border: 1px solid var(--teal-pale); border-radius: 10px;
  padding: 12px 16px; font-family: var(--body); font-size: 14px; color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.metric-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); flex-shrink: 0; }

.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.outcome-card { background: var(--white); border: 1px solid var(--teal-pale); border-radius: var(--radius); padding: 24px; }
.outcome-num { font-family: var(--serif); font-size: 44px; font-weight: 400; line-height: 1; letter-spacing: -.03em; color: var(--teal); margin-bottom: 8px; }
.outcome-num em { font-style: italic; color: var(--gold-deep); }
.outcome-label { font-family: var(--body); font-size: 11px; color: var(--mid); line-height: 1.6; }

.reflection { background: var(--ink); color: var(--cream); padding: 72px 0; }
.reflection-inner { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.reflection .section-kicker { color: var(--gold); }
.reflection h2 { font-family: var(--serif); font-size: clamp(24px,3.5vw,36px); font-weight: 400; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 24px; color: var(--cream); }
.reflection h2 em { font-style: italic; color: var(--gold); }
.reflection p { font-family: var(--body); font-size: 15px; line-height: 1.82; color: rgba(246,242,235,.65); margin-bottom: 20px; }
.reflection p strong { color: var(--cream); font-weight: 400; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-availability {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 28px;
  margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--teal-pale);
}
.avail-group p { font-family: var(--body); color: var(--mid); line-height: 1.9; display: block; font-size: 14px; margin-bottom: 0; }
.avail-label { font-family: var(--body); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; font-weight: 500; }
.avail-link { font-family: var(--body); color: var(--teal); text-decoration: none; display: block; line-height: 1.9; transition: color .2s; }
.avail-link:hover { color: var(--gold); }
.about-contact {
  max-width: var(--max); margin: 0 auto; padding: 64px 40px;
  border-top: 1px solid var(--teal-pale);
}
.about-contact p { font-family: var(--serif); font-size: 13px; font-style: italic; color: var(--muted); margin-bottom: 12px; }

.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.skill-card { background: var(--white); border: 1px solid var(--teal-pale); border-radius: 12px; padding: 28px 32px; transition: box-shadow .25s, transform .25s; }
.skill-card:hover { box-shadow: 0 8px 28px rgba(45,107,107,.1); transform: translateY(-3px); }
.skill-icon { width: 40px; height: 40px; background: var(--teal-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.skill-icon svg { width: 20px; height: 20px; }
.skill-title { font-family: var(--body); font-size: 15px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); margin-bottom: 8px; }
.skill-desc { font-family: var(--body); font-size: 14px; line-height: 1.75; color: var(--mid); }

@media (max-width: 768px) {
  .about-availability { grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-contact { padding: 48px 24px; }
  .skills-grid { grid-template-columns: 1fr; }
}
@media (max-width: 390px) {
  .about-availability { grid-template-columns: 1fr 1fr; gap: 20px; }
  .about-contact { padding: 40px 20px; }
}

/* Image placeholder */
.img-placeholder {
  width: 100%; background: var(--cream-dark); border-radius: var(--radius);
  border: 1px dashed var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--body); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); text-align: center; padding: 40px;
}

.next-case { padding: 64px 40px; max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--teal-pale); display: flex; justify-content: space-between; align-items: center; }
.next-label { font-family: var(--body); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.next-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--ink); letter-spacing: -.02em; }
.next-title em { font-style: italic; color: var(--teal); }
.next-link {
  font-family: var(--body); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--teal); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: color .2s; white-space: nowrap;
}
.next-link:hover { color: var(--gold); }
.next-link::after { content: '→'; font-size: 16px; }


/* ============================================================
   RESPONSIVE — Tablet 768px
   ============================================================ */
@media (max-width: 768px) {


  /* Nav */
  nav.nav-home { padding: 16px 24px; }
  nav.nav-home.scrolled { padding: 12px 24px; }
  nav.nav-case { padding: 16px 24px; }

  /* Hero */
  .hero-wrap { padding: 0 24px; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 100px 0 64px; }
  .hero-photo-wrap { order: -1; max-width: 320px; margin: 0 auto; }
  .photo-clip { flex: none; }
  .hero-photo { height: auto; aspect-ratio: 3/4; }

  /* Work section */
  .section { padding: 40px 20px !important; }
  .section-header { margin-bottom: 28px !important; }

  .project-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 0 !important; padding: 32px 0 !important; align-items: start !important;
  }
  .project-row .proj-visual { grid-column: 1 !important; grid-row: 1 !important; width: 100% !important; height: 200px !important; margin-bottom: 16px !important; }
  .project-row .proj-num { grid-column: 1 !important; grid-row: 2 !important; padding-top: 0 !important; margin-bottom: 8px !important; font-size: 11px !important; display: none !important; }
  .project-row > div:not([class]) { grid-column: 1 !important; grid-row: 3 !important; }
  .proj-arrow { display: none !important; }
  .project-row::before { display: none !important; }
  .project-row:hover { padding-left: 0 !important; background: none !important; }
  a[href*="case-studies"] { display: block !important; width: 100% !important; text-decoration: none !important; color: inherit !important; }
  .proj-title { font-size: 20px !important; }
  .proj-desc  { font-size: 14px !important; }
  .proj-meta  { font-size: 10px !important; }
  .tag        { font-size: 10px !important; padding: 2px 8px !important; }
  .stat-badge { font-size: 11px !important; min-width: 90px !important; }

  /* Approach */
  .approach { padding: 64px 24px; }
  .approach-inner { grid-template-columns: 1fr; gap: 40px; }

  /* About */
  .about-strip { padding: 64px 24px; grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 260px; aspect-ratio: 1/1; }

  /* Contact */
  .contact { padding: 64px 24px; grid-template-columns: 1fr; gap: 48px; }

  /* Palette / footer */
  .palette-strip { display: none; }
  footer { padding: 18px 24px; }

  /* Case study */
  .case-hero { padding: 96px 24px 40px; }
  .case-section { padding: 0 24px 56px; }
  .img-full { padding: 0 24px; }
  .img-wide { padding: 0 24px; }
  .img-contained { padding: 0 24px; }
  .img-two { padding: 0 24px; grid-template-columns: 1fr; gap: 24px; }
  .img-brand { padding: 0 24px; max-width: 100%; }
  .charts-grid { padding: 0 24px; }
  .persona-wrap { padding: 0 24px; }
  .persona-card { padding: 28px; }
  .persona-stats { grid-template-columns: 1fr; gap: 16px; border-bottom: none; }
  .persona-stat { padding: 0; border-left: none !important; border-top: 1px solid var(--teal-pale); padding-top: 16px; }
  .persona-stat:first-child { border-top: none; padding-top: 0; }
  .comp-audit { padding: 0 24px; }
  .comp-audit-grid { grid-template-columns: repeat(2, 1fr); }
  .comp-num { font-size: 42px; }
  .divider { padding: 0 24px; }
  .meta-row { grid-template-columns: 1fr 1fr; }
  .meta-item:nth-child(2n) { border-right: none; }
  .meta-item:nth-child(3), .meta-item:nth-child(4) { border-top: 1px solid var(--teal-pale); }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .reflection { padding: 56px 0; }
  .reflection-inner { padding: 0 24px; }
  .next-case { padding: 48px 24px; }
}


/* ============================================================
   RESPONSIVE — Mobile 390px
   ============================================================ */
@media (max-width: 390px) {

  /* Nav */
  nav.nav-home { padding: 14px 20px; }
  nav.nav-home.scrolled { padding: 10px 20px; }
  .nav-name { display: none; }
  .nav-links { gap: 16px; font-size: 10px; letter-spacing: .06em; }
  .nav-avail { font-size: 10px; gap: 5px; }
  .nav-dot { width: 6px; height: 6px; }
  nav.nav-case { padding: 14px 20px; }
  .nav-back { font-size: 11px; }
  .nav-case-name { font-size: 13px; }
  .nav-next { font-size: 11px; }

  /* Hero */
  .hero-wrap { padding: 0 20px; }
  .hero { grid-template-columns: 1fr; gap: 32px; padding: 88px 0 56px; }
  .hero-photo-wrap { order: -1; max-width: 100%; }
  .photo-clip { flex: none; }
  .hero-photo { height: auto; aspect-ratio: 4/3; object-position: center 20%; }
  .photo-overlay { padding: 20px; }
  .overlay-location { font-size: 12px; }
  .overlay-tags { gap: 6px; }
  .overlay-tag { font-size: 10px; padding: 3px 10px; }
  .hero-label { font-size: 10px; margin-bottom: 16px; }
  .hero h1 { font-size: 32px; line-height: 1.12; margin-bottom: 20px; }
  .hero-sub { font-size: 14px; margin-bottom: 32px; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 16px; }
  .btn-primary { padding: 12px 24px; font-size: 11px; width: 100%; text-align: center; box-sizing: border-box; }

  /* Ticker */
  .ticker-item { padding: 0 20px; font-size: 10px; }

  /* Work */
  .section { padding: 40px 20px !important; max-width: 100% !important; }
  .section-header { margin-bottom: 28px !important; padding-bottom: 12px !important; }
  .project-row { display: flex !important; flex-direction: column !important; gap: 0 !important; padding: 24px 0 !important; cursor: default !important; align-items: stretch !important; }
  .proj-visual { order: -1 !important; width: 100% !important; height: 190px !important; margin-bottom: 16px !important; border-radius: 12px !important; }
  .proj-num { font-size: 11px !important; padding-top: 0 !important; margin-bottom: 8px !important; }
  .proj-title { font-size: 19px !important; margin-bottom: 8px !important; }
  .proj-desc  { font-size: 14px !important; line-height: 1.65 !important; }
  .proj-meta  { font-size: 10px !important; margin-top: 10px !important; }
  .proj-tags  { gap: 6px !important; margin-bottom: 10px !important; }
  .tag        { font-size: 10px !important; padding: 2px 8px !important; }
  .stat-badge { font-size: 11px !important; padding: 6px 11px !important; min-width: 90px !important; }

  /* Approach */
  .approach { padding: 56px 20px; }
  .approach-inner { grid-template-columns: 1fr; gap: 32px; }
  .approach h2 { font-size: 26px; }
  .approach-right p { font-size: 14px; }
  .approach-pills { gap: 6px; }
  .pill { font-size: 10px; padding: 4px 11px; }

  /* About */
  .about-strip { padding: 56px 20px; grid-template-columns: 1fr; gap: 28px; }
  .about-photo { width: 100%; max-width: 200px; aspect-ratio: 1/1; margin: 0 auto; display: block; }
  .about-right h3 { font-size: 22px; }
  .about-right p { font-size: 14px; }

  /* Contact */
  .contact { padding: 56px 20px 48px; grid-template-columns: 1fr; gap: 40px; }
  .contact-left h2 { font-size: 26px; }
  .contact-email { font-size: 14px; }
  .contact-right { grid-template-columns: 1fr 1fr; gap: 28px 20px; }

  /* Palette / footer */
  footer { padding: 16px 20px; flex-direction: column; gap: 6px; text-align: center; }

  /* Case study */
  .case-hero { padding: 88px 20px 32px; }
  .case-tag { font-size: 10px; }
  .case-hero h1 { font-size: 28px; line-height: 1.12; }
  .case-hero .lead { font-size: 14px; margin-bottom: 32px; }
  .meta-row { grid-template-columns: 1fr 1fr; }
  .meta-item { padding: 16px 0; }
  .meta-item:nth-child(2) { padding-left: 16px !important; }
  .meta-item:nth-child(3) { border-top: 1px solid var(--teal-pale); border-right: 1px solid var(--teal-pale); padding-top: 16px; }
  .meta-item:nth-child(4) { border-top: 1px solid var(--teal-pale); padding-left: 16px !important; padding-top: 16px; }
  .meta-label { font-size: 10px; }
  .meta-value { font-size: 12px; }
  .img-full { padding: 0 20px; margin: 32px auto; }
  .img-wide { padding: 0 20px; margin: 28px auto; }
  .img-contained { padding: 0 20px; margin: 24px auto; }
  .img-caption { font-size: 11px; }
  .img-two { padding: 0 20px; grid-template-columns: 1fr; gap: 20px; }
  .img-brand { padding: 0 20px; }
  .charts-grid { padding: 0 20px; }
  .persona-wrap { padding: 0 20px; }
  .persona-card { padding: 24px; }
  .persona-name { font-size: 28px; }
  .persona-photo { width: 120px; height: 120px; }
  .comp-audit { padding: 0 20px; }
  .comp-audit-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .comp-card { padding: 20px 16px; }
  .comp-num { font-size: 36px; }
  .case-section { padding: 0 20px 48px; }
  .section-num { font-size: 10px; }
  .section-kicker { font-size: 10px; }
  .case-section h2 { font-size: 22px; line-height: 1.2; }
  .case-section p { font-size: 14px; }
  .divider { padding: 0 20px; margin-bottom: 48px; }
  .ai-callout { padding: 20px 22px; }
  .ai-callout p { font-size: 13px; }
  .pull-quote { padding: 16px 20px; }
  .pull-quote p { font-size: 15px; }
  .decision h3 { font-size: 17px; }
  .decision p { font-size: 13px; }
  .metric-list { grid-template-columns: 1fr; gap: 8px; }
  .metric-item { font-size: 12px; padding: 10px 14px; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 12px; }
  .outcome-num { font-size: 36px; }
  .outcome-card { padding: 20px; }
  .outcome-label { font-size: 11px; }
  .reflection { padding: 48px 0; }
  .reflection-inner { padding: 0 20px; }
  .reflection h2 { font-size: 22px; }
  .reflection p { font-size: 14px; }
  .next-case { padding: 40px 20px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .next-title { font-size: 18px; }
}


/* ============================================================
   RESPONSIVE — Floor 360px
   ============================================================ */
@media (max-width: 360px) {
  .hero h1 { font-size: 28px; }
  .nav-links { gap: 12px; font-size: 10px; letter-spacing: .04em; }
  .contact-right { grid-template-columns: 1fr; }
  .about-availability { grid-template-columns: 1fr; }
  .case-hero h1 { font-size: 24px; }
  .case-section h2 { font-size: 20px; }
  .meta-row { grid-template-columns: 1fr; }
  .meta-item { border-right: none !important; border-top: none; }
  .meta-item + .meta-item { border-top: 1px solid var(--teal-pale) !important; }
}
