/* ─── DESIGN TOKENS ─── */
:root {
  --ink: #1a1814;
  --ink-60: rgba(26,24,20,.6);
  --ink-20: rgba(26,24,20,.12);
  --cream: #f8f5ef;
  --warm-white: #fdfcf9;
  --accent: #b85c38;
  --accent-light: #f0e8e2;
  --gold: #c9a84c;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --max: 1160px;
  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { display: block; max-width: 100%; }

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--ink);
  line-height: 1.6;
}

/* ─── NOISE TEXTURE ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}

/* ─── NAV ─── */
.ow-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(253,252,249,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-20);
  transition: padding .3s var(--ease);
}
.ow-nav.scrolled { padding: 14px 48px; }

.ow-nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .02em;
  color: var(--ink);
  text-decoration: none;
}
.ow-nav-logo span { font-style: italic; color: var(--accent); }

.ow-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.ow-nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.ow-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.ow-nav-links a:hover { color: var(--ink); }
.ow-nav-links a:hover::after { transform: scaleX(1); }
.ow-nav-links a.active { color: var(--accent); }
.ow-nav-links a.active::after { transform: scaleX(1); }

.ow-nav-cta {
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: var(--warm-white) !important;
  background: var(--accent) !important;
  padding: 9px 22px !important;
  border-radius: 2px !important;
  text-decoration: none !important;
  transition: background .2s !important;
}
.ow-nav-cta:hover { background: #9e4e2f !important; }
.ow-nav-cta::after { display: none !important; }

/* ─── HAMBURGER ─── */
.ow-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.ow-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #1a1814;
  transition: transform .25s, opacity .25s;
}
.ow-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ow-hamburger.open span:nth-child(2) { opacity: 0; }
.ow-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE NAV ─── */
.ow-nav-mobile {
  display: none;
  position: fixed;
  top: 61px;
  left: 0; right: 0;
  z-index: 8999;
  background: rgba(253,252,249,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,24,20,.1);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 0;
}
.ow-nav-mobile.open { display: flex; }
.ow-nav-mobile a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(26,24,20,.7);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26,24,20,.08);
  display: block;
}
.ow-nav-mobile a:last-child {
  border-bottom: none;
  margin-top: 8px;
  color: #fdfcf9;
  background: #b85c38;
  padding: 14px 20px;
  border-radius: 2px;
  text-align: center;
  letter-spacing: .1em;
}
.ow-nav-mobile a:last-child:hover { background: #9e4e2f; }

/* ─── PORTFOLIO HERO ─── */
.port-hero {
  padding: 160px 48px 100px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.port-hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.port-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.port-hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.01em;
  color: var(--ink);
}
.port-hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.port-hero-meta {
  padding-bottom: 12px;
}
.port-hero-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 400px;
}
.port-hero-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.port-hero-cats a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-60);
  border: 1px solid var(--ink-20);
  padding: 8px 18px;
  border-radius: 40px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.port-hero-cats a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* ─── DIVIDER ─── */
.port-divider {
  width: 100%;
  height: 1px;
  background: var(--ink-20);
  margin: 0;
}

/* ─── SECTION WRAPPER ─── */
.port-section {
  padding: 100px 48px;
  max-width: calc(var(--max) + 96px);
  margin: 0 auto;
}
.port-section-cream {
  background: var(--cream);
  max-width: 100%;
  padding: 100px 0;
}
.port-section-cream .port-section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}
.port-section-dark {
  background: var(--ink);
  color: var(--warm-white);
  max-width: 100%;
  padding: 100px 0;
}
.port-section-dark .port-section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── SECTION HEADER ─── */
.port-section-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 60px;
  align-items: start;
  margin-bottom: 64px;
}
.port-section-num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: .1em;
  padding-top: 6px;
}
.port-section-num-dark { color: var(--gold); }

.port-section-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.port-section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.port-section-eyebrow-dark { color: var(--gold); }
.port-section-eyebrow-dark::before { background: var(--gold); }

.port-section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 16px;
}
.port-section-title-dark { color: var(--warm-white); }
.port-section-title em { font-style: italic; color: var(--accent); }
.port-section-title-dark em { color: var(--gold); }

.port-section-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.8;
  max-width: 540px;
}
.port-section-desc-dark { color: rgba(253,252,249,.5); }

/* ─── IMAGE GRIDS ─── */
.port-grid {
  display: grid;
  gap: 12px;
}
.port-grid-3 { grid-template-columns: repeat(3, 1fr); }
.port-grid-4 { grid-template-columns: repeat(4, 1fr); }
.port-grid-2 { grid-template-columns: repeat(2, 1fr); }

.port-grid-item {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}
.port-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.port-grid-item:hover img { transform: scale(1.04); }

.port-grid-item-tall { grid-row: span 2; }
.port-grid-item-wide { grid-column: span 2; }

/* Fixed-height grid rows */
.port-grid-fixed {
  grid-auto-rows: 260px;
}
.port-grid-fixed-tall {
  grid-auto-rows: 320px;
}

/* Image overlay on hover */
.port-grid-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,20,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background .3s;
}
.port-grid-item:hover .port-grid-item-overlay {
  background: rgba(26,24,20,.35);
}
.port-grid-item-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(253,252,249,0);
  transition: color .3s;
}
.port-grid-item:hover .port-grid-item-label {
  color: rgba(253,252,249,.85);
}

/* ─── VIDEO GRID ─── */
.port-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  grid-auto-rows: 300px;
}
.port-video-item {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: 2px;
}
.port-video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
  transition: opacity .3s;
}
.port-video-item:hover video { opacity: 1; }
.port-video-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: rgba(26,24,20,.5);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: 2px;
}

/* ─── PDF PROJECT CARDS ─── */
.port-pdf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.port-pdf-card {
  background: var(--warm-white);
  border: 1px solid var(--ink-20);
  border-radius: 2px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.port-pdf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.port-pdf-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(184,92,56,.1);
}
.port-pdf-card-icon {
  font-size: 28px;
  margin-bottom: 20px;
  opacity: .5;
}
.port-pdf-card-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.port-pdf-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
  flex: 1;
}
.port-pdf-card-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 24px;
}
.port-pdf-card-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.port-pdf-card-cta::after {
  content: '→';
  transition: transform .2s;
}
.port-pdf-card:hover .port-pdf-card-cta::after { transform: translateX(4px); }

/* Dark PDF cards (for dark sections) */
.port-pdf-card-dark {
  background: rgba(253,252,249,.04);
  border-color: rgba(253,252,249,.1);
  color: var(--warm-white);
}
.port-pdf-card-dark::before { background: var(--gold); }
.port-pdf-card-dark:hover { border-color: var(--gold); box-shadow: 0 4px 24px rgba(201,168,76,.12); }
.port-pdf-card-dark .port-pdf-card-category { color: var(--gold); }
.port-pdf-card-dark .port-pdf-card-title { color: var(--warm-white); }
.port-pdf-card-dark .port-pdf-card-desc { color: rgba(253,252,249,.45); }
.port-pdf-card-dark .port-pdf-card-cta { color: var(--gold); }

/* ─── CAMPAIGN STRIPS ─── */
.port-campaign {
  margin-bottom: 64px;
}
.port-campaign:last-child { margin-bottom: 0; }
.port-campaign-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.port-campaign-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
  display: block;
}
.port-campaign-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  grid-auto-rows: 220px;
}
.port-campaign-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .2s;
  cursor: pointer;
}
.port-campaign-strip img:hover {
  transform: scale(1.03);
  opacity: .9;
}

/* Story (portrait) strip */
.port-story-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  grid-auto-rows: 340px;
  margin-top: 10px;
}
.port-story-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .4s var(--ease);
}
.port-story-strip img:hover { transform: scale(1.03); }

/* ─── FEATURE IMAGE ─── */
.port-feature {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 20px;
}
.port-feature img {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: contain;
  background: var(--cream);
}

/* ─── INFOGRAPHIC FEATURE ─── */
.port-infographic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}
.port-infographic-img {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--ink-20);
}
.port-infographic-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── MOOD BOARD ─── */
.port-moodboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  grid-auto-rows: 280px;
}
.port-moodboard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .4s var(--ease);
}
.port-moodboard img:hover { transform: scale(1.02); }

/* ─── CALLOUT BAND ─── */
.port-callout {
  background: var(--accent-light);
  padding: 64px 48px;
  text-align: center;
}
.port-callout-quote {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.4;
}
.port-callout-attr {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ─── FOOTER ─── */
.ow-footer {
  background: var(--ink);
  border-top: 1px solid rgba(253,252,249,.08);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ow-footer-logo {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  color: rgba(253,252,249,.4);
  letter-spacing: .02em;
}
.ow-footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: rgba(253,252,249,.25);
  letter-spacing: .06em;
}
.ow-footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.ow-footer-links a {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(253,252,249,.35);
  text-decoration: none;
  transition: color .2s;
}
.ow-footer-links a:hover { color: rgba(253,252,249,.7); }

/* ─── LIGHTBOX ─── */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,24,20,.92);
  z-index: 8000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}
.lb-overlay.open { display: flex; }
.lb-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  cursor: default;
}
.lb-video {
  display: none;
  max-width: min(90vw, 900px);
  max-height: 85vh;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  background: #000;
  cursor: default;
  outline: none;
}
.lb-overlay.video-mode .lb-img { display: none; }
.lb-overlay.video-mode .lb-video { display: block; }
.lb-overlay.video-mode .lb-prev,
.lb-overlay.video-mode .lb-next { display: none; }
.port-video-item { cursor: pointer; }
.lb-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 28px;
  color: rgba(253,252,249,.6);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color .2s;
}
.lb-close:hover { color: var(--warm-white); }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: rgba(253,252,249,.5);
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px;
  transition: color .2s;
}
.lb-nav:hover { color: var(--warm-white); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ─── TAGS ─── */
.port-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.port-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: 1px;
}
.port-tag-dark {
  color: var(--gold);
  border-color: var(--gold);
}

/* ─── BACK LINK ─── */
.port-back {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.port-back::before { content: '←'; }
.port-back:hover { color: var(--accent); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .port-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .port-pdf-grid { grid-template-columns: repeat(2, 1fr); }
  .port-campaign-strip { grid-template-columns: repeat(3, 1fr); }
  .port-story-strip { grid-template-columns: repeat(4, 1fr); }
  .port-infographic { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .ow-nav-links { display: none !important; }
  .ow-hamburger { display: flex; }
}
@media (max-width: 768px) {
  .ow-nav { padding: 18px 24px; }
  .ow-nav.scrolled { padding: 14px 24px; }
  .port-hero { grid-template-columns: 1fr; gap: 32px; padding: 140px 24px 80px; }
  .port-section { padding: 80px 24px; }
  .port-section-header { grid-template-columns: 1fr; gap: 0; }
  .port-section-num { display: none; }
  .port-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .port-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .port-pdf-grid { grid-template-columns: 1fr; }
  .port-video-grid { grid-template-columns: 1fr; }
  .port-campaign-strip { grid-template-columns: repeat(2, 1fr) !important; }
  .port-story-strip { grid-template-columns: repeat(2, 1fr); }
  .port-moodboard { grid-template-columns: 1fr; }
  [style*="repeat(5,1fr)"], [style*="repeat(5, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; height: auto !important; grid-auto-rows: 200px !important; }
  [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; height: auto !important; grid-auto-rows: 200px !important; }
  [style*="repeat(3,1fr)"], [style*="repeat(3, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; height: auto !important; grid-auto-rows: 200px !important; }
  .ow-footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 24px; }
  .port-callout { padding: 60px 24px; }
}
@media (max-width: 480px) {
  .port-grid-3 { grid-template-columns: 1fr; }
  .port-campaign-strip { grid-template-columns: 1fr; }
}

/* ─── REBUILD ADDITIONS (Porter & Black) ─────────────────────────── */
/* New classes referenced by native-widget rebuild that weren't in the
   original page-scoped <style> block. */

/* Thesis section — abstract / method / findings */
.port-thesis-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.port-thesis-body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(253,252,249,.7);
  line-height: 1.8;
  margin: 0;
}
.port-thesis-body-sm {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(253,252,249,.65);
  line-height: 1.75;
  margin: 0;
}
.port-thesis-findings {
  padding: 0;
  margin: 0;
  list-style: none;
}
.port-thesis-findings li {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(253,252,249,.65);
  line-height: 1.75;
  padding-left: 18px;
  position: relative;
  margin-bottom: 10px;
}
.port-thesis-findings li:last-child { margin-bottom: 0; }
.port-thesis-findings li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.port-thesis-image {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(253,252,249,.1);
}
.port-thesis-image img { display: block; width: 100%; height: auto; }

/* SI Classes — infographic feature */
.port-info-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px 0;
}
.port-info-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 16px 0;
}
.port-info-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.8;
  margin: 0 0 28px 0;
}

/* Mind4Youth story caption */
.port-story-caption {
  background: var(--cream);
  border-radius: 2px;
  display: flex;
  align-items: center;
  padding: 28px 32px;
  height: 100%;
}
.port-story-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px 0;
}
.port-story-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}

/* PDF card cover image (used in all PDF cards via native widget) */
.port-pdf-card { text-decoration: none; }
.port-pdf-card-cover {
  margin: -36px -32px 24px;
  overflow: hidden;
  border-radius: 2px 2px 0 0;
}
.port-pdf-card-cover img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* PR Writing cards */
.port-pr-card { cursor: default; }
.port-pr-download {
  margin: 12px 0 0 0;
}
.port-pr-download a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-20);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.port-pr-download a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Video gallery wrappers — preserve original behavior */
.port-video-wrap { width: 100%; }
.port-video-wrap .port-video-item video { display: block; }

/* OBS3 gallery inside the dark "PDF" card */
.port-obs3-gallery { margin-top: 16px; }
.port-obs3-gallery .gallery-item img {
  border-radius: 2px;
  cursor: pointer;
}
