/* ═══════════════════════════════════════════════════════
   Noble Fork — Main Stylesheet
   Version: 1.0.0
   ═══════════════════════════════════════════════════════ */

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── TOKENS ───────────────────────────────────────────── */
:root {
  --linen:      #F7F4EE;
  --burgundy:   #5F0F40;
  --orange:     #D74E09;
  --ink:        #1A1020;
  --blue-deep:  #124E78;
  --blue-mid:   #4D86A5;
  --blue-pale:  #EBF3F8;
  --grey-70:    #4A3A54;
  --grey-50:    #6E5F78;
  --grey-30:    #B5ACBC;
  --grey-10:    #ECE9EF;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Lora', Georgia, serif;
  --radius-img: 16px;
  --max-w:      1080px;
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* Override Kadence default font — force Lora on all body/editorial elements */
.story-text p,
.story-text li,
.story-pull,
.founder-bio,
.services-intro,
.contact-sub,
.post-body,
.post-body p,
.post-body li,
.post-body blockquote,
.blog-card-excerpt,
.journal-subtitle {
  font-family: 'Lora', Georgia, serif !important;
}

/* ── BASE ─────────────────────────────────────────────── */
body {
  background: var(--linen);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: hidden;
}

body p,
body li,
body td,
body dd {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.75;
}

/* ── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(247,244,238,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26,16,32,0.08);
}
.nav-wordmark {
  font-family: var(--font-head); font-weight: 300; font-size: 18px;
  letter-spacing: -0.02em; color: var(--linen); text-decoration: none;
  will-change: opacity;
}
@media (min-width: 1024px) {
  .nav-wordmark {
    font-size: 24px;
  }
}
.nav.scrolled .nav-wordmark { color: var(--burgundy); }
.nav-links { display: none; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-head); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  color: rgba(247,244,238,0.7); transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: var(--grey-50); }
.nav-links a:hover,
.nav-links a.active { color: var(--orange) !important; }
.nav.scrolled .nav-links a.active { color: var(--burgundy) !important; }
.nav-hamburger {
  background: none; border: none; cursor: pointer; padding: 4px;
  display: flex; flex-direction: column; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--linen); transition: background 0.3s;
}
.nav.scrolled .nav-hamburger span { background: var(--ink); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--burgundy); z-index: 101;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 40px;
  opacity: 0; pointer-events: none; transform: translateY(-16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-head); font-weight: 300; font-size: 28px;
  letter-spacing: -0.01em; color: var(--linen); text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-size: 24px; color: var(--linen); line-height: 1;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100svh; background: var(--burgundy);
  display: flex; flex-direction: column; justify-content: flex-start;
 padding: clamp(72px, 12vh, 120px) 24px 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 15%, rgba(18,78,120,0.2) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to top, rgba(95,15,64,0.35), transparent);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; display: flex; flex-direction: column; flex: 1;
}
.hero-eyebrow {
  font-family: var(--font-head); font-size: 11px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(247,244,238,0.75);
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--orange); flex-shrink: 0;
}
.hero-wordmark {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(80px, 16vw, 152px); line-height: 0.9;
  letter-spacing: -0.03em; color: var(--linen); margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease-out) 0.45s forwards;
  will-change: opacity, transform;
}

.hero-sub {
  font-family: var(--font-head) !important;
  font-style: normal !important;
  font-weight: 300;
  font-size: clamp(16px, 2.2vw, 26px);
  line-height: 1.5; letter-spacing: -0.01em;
  color: rgba(247,244,238,0.72);
  margin: 20px 0 0 0 !important;
  padding: 0 !important;
  text-indent: 0 !important;
  position: relative; z-index: 2;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp 0.7s var(--ease-out) 0.58s forwards;
}

.hero-bottom {
  margin-top: auto;
  padding-top: 56px;
}
.hero-bottom .hero-cities {
  margin-bottom: 20px;
}

/* PARIS · AUSTIN */
.hero-cities {
  display: flex; align-items: stretch; gap: 0;
  margin-bottom: 28px;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp 0.7s var(--ease-out) 0.62s forwards;
}
.hero-city { display: flex; flex-direction: column; gap: 4px; }
.hero-city-name {
  font-family: var(--font-head); font-weight: 400;
  font-size: clamp(12px, 1.6vw, 14px); letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(247,244,238,0.78);
}
.hero-city-country {
  font-family: var(--font-head); font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(247,244,238,0.55);
}
.hero-city-divider {
  width: 1px; background: rgba(247,244,238,0.18);
  margin: 0 20px; align-self: stretch;
}

/* Email */
.hero-email-wrapper {
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid rgba(247,244,238,0.15);
  display: inline-block;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp 0.7s var(--ease-out) 0.76s forwards;
}
.hero-email {
  font-family: var(--font-head); font-size: 12px; font-weight: 400;
  letter-spacing: 0.14em; color: rgba(247,244,238,0.6);
  text-decoration: none; display: inline-block; transition: color 0.25s;
}
.hero-email:hover { color: rgba(247,244,238,0.92); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 28px; right: 24px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 0.5s ease 1.4s forwards;
}
.hero-scroll-hint span {
  font-family: var(--font-head); font-size: 8px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(247,244,238,0.22);
}
.scroll-line {
  width: 1px; height: 40px;
  background: rgba(247,244,238,0.14); position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; width: 100%; height: 100%;
  background: var(--orange); animation: scrollDrop 2s ease 1.8s infinite;
}

/* ── SECTION BASE ─────────────────────────────────────── */
section { padding: 80px 24px; scroll-margin-top: 64px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-head); font-size: 9px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 24px; height: 1px;
  background: currentColor; flex-shrink: 0;
}
.section-eyebrow.blue { color: var(--blue-mid); }
.section-heading {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(30px, 5vw, 48px); line-height: 1.08;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 24px;
}

/* ── REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── OUR STORY ────────────────────────────────────────── */
.story { background: #ffffff; }
.story-text-full { max-width: 720px; }
.story-text-full p { font-size: 15px; line-height: 1.85; color: var(--grey-70); margin-bottom: 18px; }
.story-text-full p:last-child { margin-bottom: 0; }
.story-pull {
  font-family: var(--font-body);
  font-size: clamp(17px, 2.5vw, 21px); font-style: italic; color: var(--burgundy);
  line-height: 1.6; border-left: 2px solid var(--orange); padding-left: 20px; margin: 32px 0;
}

/* ── SERVICES ───────────────────────────────────────────── */
.services { background: var(--blue-pale); }
.services-intro { font-size: 14px; line-height: 1.85; color: var(--grey-70); max-width: 640px; margin-bottom: 48px; }
.services-intro p + p { margin-top: 16px; }
.services-card {
  background: #ffffff; border-radius: 10px;
  padding: 8px 28px 4px; margin-top: 32px;
}
.services-list { list-style: none; margin: 0; padding: 0; }
.services-row { padding: 22px 0; }
.services-row + .services-row { border-top: 1px solid rgba(26,16,32,0.08); }
.services-accent { width: 28px; height: 2px; background: var(--orange); margin-bottom: 10px; }
.services-name {
  font-family: var(--font-head); font-weight: 400;
  font-size: clamp(16px, 2vw, 20px); letter-spacing: -0.01em; color: var(--grey-70);
}
.services-tags {
  font-family: var(--font-head); font-size: 9px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-30);
  margin-top: 10px;
}
.services-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.services-tag {
  font-family: var(--font-head); font-size: 8px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 10px;
  background: rgba(18,78,120,0.07); color: var(--blue-deep); border-radius: 3px;
}

/* ── FOUNDERS ─────────────────────────────────────────── */
.founders { background: var(--linen); }
.founders-grid { display: grid; gap: 64px; }
.founder-photo {
  width: 100%; aspect-ratio: 1 / 1;
  border-radius: var(--radius-img); overflow: hidden; background: var(--grey-10); margin-bottom: 28px;
}
.founder-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block; object-position: center top;
}
.founder-name { font-family: var(--font-head); font-weight: 300; font-size: 26px; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 4px; }
.founder-title {
  font-family: var(--font-head); font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.founder-title::after { content: ''; display: block; width: 20px; height: 1px; background: var(--orange); }
.founder-bio { font-size: 13px; line-height: 1.85; color: var(--grey-70); }
.founder-awards { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.award-tag {
  font-family: var(--font-head); font-size: 8px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 10px;
  background: rgba(95,15,64,0.07); color: var(--burgundy); border-radius: 3px;
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact { background: var(--burgundy); padding: 100px 24px; text-align: center; }
.contact-eyebrow {
  font-family: var(--font-head); font-size: 9px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: rgba(247,244,238,0.38); margin-bottom: 24px;
}
.contact-heading {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(32px, 6vw, 60px); letter-spacing: -0.025em; line-height: 1.05;
  color: var(--linen); margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.contact-sub {
  font-family: var(--font-head) !important; font-weight: 400;
  font-size: 15px; font-style: normal !important;
  color: rgba(247,244,238,0.78); margin-bottom: 48px;
  max-width: 420px; margin-left: auto; margin-right: auto; line-height: 1.6;
}
.contact-email {
  display: inline-block; font-family: var(--font-head); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--linen);
  text-decoration: none; padding: 16px 36px; border: 1px solid rgba(247,244,238,0.28);
  border-radius: 2px; transition: background 0.3s, border-color 0.3s; margin-bottom: 48px;
}
.contact-email:hover { background: rgba(247,244,238,0.08); border-color: rgba(247,244,238,0.5); }
.contact-social { display: flex; justify-content: center; gap: 24px; }
.social-link {
  display: flex; align-items: center; gap: 8px; font-family: var(--font-head);
  font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; color: rgba(247,244,238,0.58); transition: color 0.25s;
}
.social-link:hover { color: var(--orange); }
.social-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--ink); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center;
}
.footer-wordmark { font-family: var(--font-head); font-weight: 300; font-size: 15px; letter-spacing: -0.02em; color: rgba(247,244,238,0.55); }
.footer-locations { font-family: var(--font-head); font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,244,238,0.48); }
.footer-meta { font-family: var(--font-head); font-size: 8px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,244,238,0.38); }

/* ═══════════════════════════════════════════════════════
   JOURNAL PAGE
   ═══════════════════════════════════════════════════════ */

/* Page header */
.journal-header {
  padding: 120px 24px 64px; background: var(--blue-deep);
  position: relative; overflow: hidden;
}
.journal-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(77,134,165,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.journal-header-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 2; }
.journal-eyebrow {
  font-family: var(--font-head); font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(247,244,238,0.5);
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.journal-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--orange); flex-shrink: 0;
}
.journal-title {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(40px, 7vw, 72px); line-height: 0.95;
  letter-spacing: -0.025em; color: var(--linen); margin-bottom: 24px;
}
.journal-subtitle {
  font-family: var(--font-body); font-size: 15px; font-style: italic;
  color: rgba(247,244,238,0.55); max-width: 480px; line-height: 1.7;
}

/* Filter bar */
.filter-bar {
  background: var(--linen);
  border-bottom: 1px solid rgba(26,16,32,0.08);
  padding: 0 24px;
  position: sticky; top: 61px; z-index: 10;
}
.filter-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
}
.filter-bar-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-size: 9px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--grey-50); padding: 18px 20px;
  border-bottom: 2px solid transparent; white-space: nowrap; flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.active { color: var(--burgundy); border-bottom-color: var(--burgundy); }

/* Masonry grid */
.journal-body { padding: 56px 24px 100px; max-width: var(--max-w); margin: 0 auto; }
.blog-grid { columns: 1; column-gap: 20px; }

/* Cards */
.blog-card {
  break-inside: avoid; background: white;
  border-radius: var(--radius-img); overflow: hidden; margin-bottom: 20px;
  display: block; text-decoration: none;
  border: 1px solid rgba(26,16,32,0.05);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(26,16,32,0.1); }
.blog-card-img { width: 100%; overflow: hidden; line-height: 0; }
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-body { padding: 22px 24px 26px; }
.blog-card-cat {
  font-family: var(--font-head); font-size: 8px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--blue-deep);
  margin-bottom: 11px; display: flex; align-items: center; gap: 8px;
}
.blog-card-cat::before { content: ''; display: block; width: 14px; height: 1px; background: var(--blue-mid); }
.blog-card-title {
  font-family: var(--font-head); font-weight: 300; font-size: 19px;
  line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 10px;
}
.blog-card-excerpt { font-family: var(--font-body); font-size: 13px; line-height: 1.75; color: var(--grey-70); margin-bottom: 18px; }
.blog-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid rgba(26,16,32,0.06);
}
.blog-card-date { font-family: var(--font-head); font-size: 8px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-50); }
.blog-card-read {
  font-family: var(--font-head); font-size: 8px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 5px; transition: gap 0.2s;
}
.blog-card:hover .blog-card-read { gap: 8px; }
.blog-card-read::after { content: '\2192'; font-size: 11px; letter-spacing: 0; }

/* Featured first post */
.blog-card.featured .blog-card-img { aspect-ratio: 16 / 7; }
.blog-card.featured .blog-card-title { font-size: clamp(22px, 3.5vw, 30px); }
.blog-card.featured .blog-card-body { padding: 28px 32px 32px; }

/* No posts message */
.no-posts {
  font-family: var(--font-body); font-style: italic;
  color: var(--grey-50); font-size: 15px; padding: 40px 0;
}

/* Pagination */
.journal-pagination {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 64px; padding-top: 48px;
  border-top: 1px solid rgba(26,16,32,0.08);
}
.journal-pagination a,
.journal-pagination span {
  font-family: var(--font-head); font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
  color: var(--grey-50); padding: 10px 16px;
  border: 1px solid rgba(26,16,32,0.12); border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.journal-pagination a:hover { color: var(--burgundy); border-color: var(--burgundy); }
.journal-pagination .current { color: var(--burgundy); border-color: var(--burgundy); }

/* ═══════════════════════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════════════════════ */
.post-header {
  padding: 120px 24px 56px; background: var(--burgundy);
  position: relative; overflow: hidden;
}
.post-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 15%, rgba(18,78,120,0.2) 0%, transparent 55%);
  pointer-events: none;
}
.post-header-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }
.post-eyebrow {
  font-family: var(--font-head); font-size: 9px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.post-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--orange); }
.post-title {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(28px, 5vw, 52px); line-height: 1.08;
  letter-spacing: -0.02em; color: var(--linen); margin-bottom: 24px;
}
.post-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-family: var(--font-head); font-size: 9px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,244,238,0.45);
}

.post-hero-img {
  width: 100%; max-height: 60vh; overflow: hidden; line-height: 0;
}
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.post-article {
  max-width: 780px; margin: 0 auto; padding: 64px 24px 100px;
}
.post-body { font-size: 16px; line-height: 1.85; color: var(--grey-70); }
.post-body p { margin-bottom: 1.5em; }
.post-body h2 {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(22px, 3.5vw, 32px); letter-spacing: -0.01em;
  color: var(--ink); margin: 2em 0 0.75em;
}
.post-body h3 {
  font-family: var(--font-head); font-weight: 400; font-size: 20px;
  color: var(--ink); margin: 1.75em 0 0.6em;
}
.post-body blockquote {
  border-left: 2px solid var(--orange); padding-left: 20px;
  font-style: italic; font-size: 18px; color: var(--burgundy);
  margin: 2em 0; line-height: 1.6;
}
.post-body img {
  width: 100%; border-radius: var(--radius-img); margin: 2em 0; display: block;
}
.post-body a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--burgundy); }

.post-back { margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(26,16,32,0.08); }
.post-back-link {
  font-family: var(--font-head); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey-50); text-decoration: none; transition: color 0.2s;
}
.post-back-link:hover { color: var(--burgundy); }

/* ── KEYFRAMES ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ── TABLET 640px+ ────────────────────────────────────── */
@media (min-width: 640px) {
  section { padding: 100px 40px; }
.hero { padding: clamp(72px, 12vh, 120px) 40px 72px; }
  .nav { padding: 20px 40px; }
  .founders-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .nav-hamburger { display: none; }
  .nav-links { display: flex; }
  .journal-header { padding: 120px 40px 72px; }
  .filter-bar { padding: 0 40px; }
  .journal-body { padding: 64px 40px 100px; }
  .blog-grid { columns: 2; }
  .post-header { padding: 120px 40px 64px; }
  .post-article { padding: 64px 40px 100px; }
}

/* ── DESKTOP 1024px+ ──────────────────────────────────── */
@media (min-width: 1024px) {
  section { padding: 120px 60px; }
.hero { padding: clamp(80px, 12vh, 120px) 80px 88px; }
  .nav { padding: 28px 60px; }
  .journal-header { padding: 120px 60px 80px; }
  .filter-bar { padding: 0 60px; }
  .journal-body { padding: 72px 60px 120px; max-width: 100%; }
  .blog-grid { columns: 3; }
  .post-header { padding: 120px 60px 72px; }
  .post-article { padding: 72px 60px 120px; max-width: 860px; }
}


/* ============================================================
   OUR WORK — Gallery Page
   Append to: noblefork-child/assets/css/noblefork.css
   ============================================================ */

.nf-work {
  background: var(--linen, #F7F4EE);
  padding: clamp(60px, 9vw, 120px) 0 clamp(80px, 11vw, 160px);
}

.nf-work__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

/* ── Header ─────────────────────────────────────────────── */
.nf-work__header {
  margin-bottom: clamp(48px, 6vw, 88px);
  max-width: 880px;
}

@media (max-width: 768px) {
  .nf-work__header {
    padding-top: 48px;
  }
}

.nf-work__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D74E09;
  margin: 0 0 28px;
}

.nf-work__headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1A1020;
  margin: 0 0 32px;
  max-width: 880px;
}

.nf-work__intro {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: #4A3A54;
  margin: 0;
  max-width: 640px;
}

/* ── Grid ───────────────────────────────────────────────── */
.nf-work__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1023px) {
  .nf-work__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .nf-work__grid { grid-template-columns: 1fr; }
}

.nf-work__item { margin: 0; }

/* ── Card ───────────────────────────────────────────────── */
.nf-work__card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.nf-work__card:focus-visible {
  outline: 2px solid #5F0F40;
  outline-offset: 4px;
}

/* ── Media (thumbnail + play overlay) ───────────────────── */
.nf-work__media {
  position: relative;
  margin: 0 0 20px;
  overflow: hidden;
  background: #1A1020;
  aspect-ratio: 16 / 9;
}

.nf-work__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
              opacity 0.4s ease;
  opacity: 0.94;
}

.nf-work__card:hover .nf-work__thumb,
.nf-work__card:focus-visible .nf-work__thumb {
  transform: scale(1.04);
  opacity: 1;
}

/* Play indicator — minimal, editorial */
.nf-work__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  background: rgba(247, 244, 238, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.nf-work__play::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent #5F0F40;
  margin-left: 3px;
}

.nf-work__card:hover .nf-work__play,
.nf-work__card:focus-visible .nf-work__play {
  background: #D74E09;
  transform: scale(1.08);
}

.nf-work__card:hover .nf-work__play::before,
.nf-work__card:focus-visible .nf-work__play::before {
  border-left-color: #F7F4EE;
}

/* ── Meta ──────────────────────────────────────────────── */
.nf-work__meta { padding: 0; }

.nf-work__label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D74E09;
  margin: 0 0 12px;
}

.nf-work__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: #1A1020;
  margin: 0 0 12px;
}

.nf-work__desc {
  font-family: 'Lora', Georgia, serif;
  font-size: 13px;
  line-height: 1.7;
  color: #4A3A54;
  margin: 0 0 12px;
}

.nf-work__credit {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: #6E5F78;
  margin: 0;
}

/* ── Mobile rotation hint ──────────────────────────────── */
.nf-rotate-hint {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 16, 32, 0.92);
  color: #F7F4EE;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 12px 20px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nf-rotate-hint[data-visible="true"] {
  opacity: 1;
}

/* ── GLightbox brand overrides ─────────────────────────── */
.glightbox-clean .gslide-description { background: transparent; }
.gslide-video {
  background: #1A1020 !important;
}
.gclose svg, .gprev svg, .gnext svg {
  color: #F7F4EE;
}
/* ============================================================
   OUR WORK — Lightbox brand overrides
   ============================================================ */

/* Hide the title/description caption area entirely */
.glightbox-container .gslide-title,
.glightbox-container .gslide-desc,
.glightbox-container .gslide-description {
  display: none !important;
}

/* Lightbox overlay — deeper ink, cleaner feel */
.goverlay {
  background: rgba(26, 16, 32, 0.95) !important;
}

/* Remove the white media wrapper behind the video */
.glightbox-container .gslide-media {
  box-shadow: none !important;
  background: transparent !important;
}

/* Plyr player chrome — burnt orange brand color */
.plyr--video {
  --plyr-color-main: #D74E09;
  --plyr-video-control-color: #F7F4EE;
  --plyr-video-control-color-hover: #D74E09;
  --plyr-video-control-background-hover: rgba(215, 78, 9, 0.2);
  --plyr-range-fill-background: #D74E09;
  --plyr-video-progress-buffered-background: rgba(247, 244, 238, 0.25);
}

/* Plyr big center play button */
.plyr__control--overlaid {
  background: rgba(215, 78, 9, 0.92) !important;
  color: #F7F4EE !important;
}

.plyr__control--overlaid:hover,
.plyr__control--overlaid:focus {
  background: #D74E09 !important;
}

/* Lightbox close button — brand treatment */
.gclose {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.gclose:hover {
  opacity: 1;
}

.gclose svg path {
  fill: #F7F4EE !important;
}

/* Prev/next arrows — brand treatment */
.gprev:hover svg path,
.gnext:hover svg path {
  fill: #D74E09 !important;
}
/* ============================================================
   OUR WORK — Hero loop section (homepage)
   Append to: noblefork-child/assets/css/noblefork.css
   ============================================================ */

.work-hero {
  background: #F7F4EE; /* Linen — matches established section pattern */
  padding: clamp(80px, 10vw, 140px) 24px;
}

.work-hero .section-eyebrow,
.work-hero .section-heading {
  /* Inherits established homepage eyebrow + heading styles */
}

/* Video — negative margins pull it back to full-bleed
   despite the 24px section padding, so text aligns with all other sections */
.work-hero-video {
  margin: clamp(48px, 6vw, 80px) -24px clamp(32px, 4vw, 48px);
  position: relative;
  aspect-ratio: 16 / 9;
  background: #1A1020; /* Ink — shows behind poster while video loads */
  overflow: hidden;
}

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

/* On mobile, hide the video and show the poster as a background */
@media (max-width: 768px) {
  .work-hero-video__player {
    display: none;
  }
  .work-hero-video {
    /* Poster is set dynamically via the video's poster attribute —
       fall back to background-image for the mobile-only static display */
    background-image: url('../video/noblefork-hero-poster.webp');
    background-size: cover;
    background-position: center;
  }
}

/* CTA — editorial inline link treatment */
.work-hero-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: clamp(24px, 3vw, 40px);
}

.work-hero-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5F0F40; /* Deep Burgundy */
  text-decoration: none;
  padding: 14px 0 14px 0;
  border-bottom: 1px solid #5F0F40;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

.work-hero-cta__link:hover,
.work-hero-cta__link:focus-visible {
  color: #D74E09; /* Burnt Orange */
  border-bottom-color: #D74E09;
  gap: 16px; /* Arrow slides right slightly on hover */
}

.work-hero-cta__link:focus-visible {
  outline: 2px solid #D74E09;
  outline-offset: 6px;
}

/* ============================================================
   NOBLE FORK — PATCH April 14, 2026
   Append to: noblefork-child/assets/css/noblefork.css
   
   Covers:
   - Nav visibility on /work/ page (was invisible-until-hover)
   - /work/ page subhead: Lora → Montserrat
   - /work/ page subhead: removed forced line break
   - Video titles wrap on desktop 3-col only (stay 1-line on mobile)
   - "Our Work" eyebrow rule line (BUG-010)
   ============================================================ */

/* ── Nav on /work/ page ────────────────────────────────────
   Problem: the nav lands on /work/ with the same linen background
   as the page AND light-colored wordmark/links (because no scroll has
   happened). Result: text invisible until hover.
   Fix: when the nav is on the /work/ page, treat it the same way
   the "scrolled" state handles it — but with a consistent base so it
   doesn't shift unexpectedly as the user scrolls the work page.
   ============================================================ */

.nav--work {
  background: rgba(247, 244, 238, 0.92); /* Linen at 92% for subtle contrast */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26, 16, 32, 0.08);
}

.nav--work .nav-wordmark {
  color: #1A1020; /* Ink — always visible */
  opacity: 1;
}

.nav--work .nav-links a {
  color: #1A1020; /* Ink — always visible, not dependent on hover */
}

.nav--work .nav-links a:hover,
.nav--work .nav-links a:focus-visible {
  color: #D74E09; /* Burnt orange on hover */
}

.nav--work .nav-hamburger span {
  background: #1A1020;
}

/* ── /work/ page intro — Montserrat, no forced break ─────── */

.nf-work__intro {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #4A3A54;
  margin: 0;
  /* Removed max-width so the line runs longer and doesn't
     break at "and" — let it flow naturally to its container */
  max-width: 760px;
}

/* ── Video titles — desktop-only line breaks ─────────────── */

/* Default (mobile + tablet): title breaks ignored, displays
   as one line (allowed to wrap naturally based on container width) */
.nf-work__title-break {
  display: inline;
  white-space: normal;
}

/* Desktop 3-column layout only: force break at the marked point */
@media (min-width: 1024px) {
  .nf-work__title-break {
    display: block;
    font-size: 0;
    line-height: 0;
    /* The space character inside the span is preserved if this rule
       doesn't apply, so mobile still reads normally */
  }
}

/* ── Homepage "Our Work" eyebrow rule line (BUG-010) ───────
   The /work/ page eyebrow lacked the rule line that appears
   before homepage eyebrows (Our Story, What We Do, etc.).
   The homepage pattern uses a ::before pseudo; matching here.
   ============================================================ */

.nf-work__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nf-work__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #D74E09;
  flex-shrink: 0;
}

/* ============================================================
   END PATCH
   ============================================================ */
   
   /* ============================================================
   PATCH — Mobile Hero Video Autoplay
   Version: 2.3 — April 2026
   Append this block to the END of noblefork.css on staging.
   ============================================================ */

/* ── Work-hero video link wrapper ─────────────────────────
   Wraps the <video> element so mobile users can tap to /work/.
   On desktop: pointer-events disabled — video is a passive visual,
   CTA link below handles navigation.
   On mobile: pointer-events active — tapping the video goes to /work/.
   ============================================================ */

.work-hero-video__link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  /* Desktop default: passive */
  pointer-events: none;
  cursor: default;
}

.work-hero-video__link:focus-visible {
  outline: 2px solid #D74E09;
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .work-hero-video__link {
    /* Mobile: active tap target */
    pointer-events: auto;
    cursor: pointer;
  }
}

/* ── Mobile video visibility override ────────────────────
   Removes the earlier rule that hid .work-hero-video__player
   on mobile and replaced it with a background-image poster.
   The video now displays on all breakpoints; mobile devices
   receive the smaller noblefork-hero-mobile.mp4 via the
   <source media="(max-width: 768px)"> tag in front-page.php.
   ============================================================ */

@media (max-width: 768px) {
  .work-hero-video__player {
    display: block !important; /* Override previous display:none */
  }
  .work-hero-video {
    background-image: none !important; /* Remove static poster fallback */
  }
}

/* ============================================================
   END PATCH — Mobile Hero Video Autoplay
   ============================================================ */
