@import url("colors_and_type.css");

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

html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  transition: background var(--dur-slow) var(--ease-out), color var(--dur-slow) var(--ease-out);
}

/* Accent tweak — overrides via root style attr */
body.is-dark {
  --paper:        #14130F;
  --paper-warm:   #1F1D18;
  --paper-cool:   #1A1814;
  --ink:          #F1ECE2;
  --ink-soft:     #E7E0CE;
  --ink-mute:     #8A8378;
  --ink-faint:    #5C5750;
  --border-soft:  rgba(241, 236, 226, 0.18);
  --border-hair:  rgba(241, 236, 226, 0.10);
  --link:         var(--ink);
  --link-hover:   rgba(241, 236, 226, 0.55);
}

.jr-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.jr-label { font-family: var(--font-serif); font-style: italic; color: var(--ink-mute); font-size: 22px; }
.jr-label-sm { font-family: var(--font-serif); font-style: italic; color: var(--ink-mute); font-size: 17px; }
i { font-style: italic; font-family: var(--font-serif); font-weight: 400; }

.jr-link {
  font-family: var(--font-body); font-weight: 500; font-size: 16px;
  color: var(--ink); text-decoration: underline; text-underline-offset: 4px;
  display: inline-flex; align-items: center; gap: 6px;
}

.jr-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--paper); color: var(--ink); border: 1px solid var(--ink);
}
.jr-pill--soft { background: transparent; border-color: var(--border-hair); color: var(--ink-mute); }
.jr-pill--ink { background: var(--ink); color: var(--paper); }
.jr-pill--blue { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Hide annotations / shapes when tweaked off */
body.no-annot .jr-annot { display: none !important; }
body.no-shapes .jr-shape,
body.no-shapes .jr-hero__shape,
body.no-shapes .jr-contact__shapes { display: none !important; }

/* =========================================
   NAV
   ========================================= */
.jr-nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  width: calc(100vw - 48px); max-width: 1380px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 12px 18px 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  z-index: 20;
  transition: background var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), backdrop-filter var(--dur) var(--ease-out);
}
.jr-nav.is-scrolled {
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px);
  border-color: var(--border-hair);
}
.jr-nav__brand {
  display: flex; align-items: baseline; gap: 6px;
  text-decoration: none; color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  letter-spacing: -0.03em;
}
.jr-nav__last { color: var(--ink-mute); font-weight: 500; }
.jr-nav__center { display: flex; gap: 26px; justify-self: center; }
.jr-nav__center a {
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  color: var(--ink); text-decoration: none;
  cursor: pointer;
}
.jr-nav__center a.active { text-decoration: underline; text-underline-offset: 4px; }
.jr-nav__cta {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  padding: 9px 16px 9px 18px; border-radius: 999px;
  border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
  text-decoration: none; white-space: nowrap;
  transition: all var(--dur) var(--ease-out);
  cursor: pointer;
}
.jr-nav__cta:hover { background: var(--ink); color: var(--paper); }
.jr-nav__dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); }

/* =========================================
   HERO
   ========================================= */
.jr-hero {
  position: relative;
  min-height: 100vh;
  padding: 130px var(--gutter) 64px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.jr-hero__shape { position: absolute; pointer-events: none; opacity: 0; transform: translateY(20px); transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out); }
.jr-hero.is-mounted .jr-hero__shape { opacity: 1; transform: translateY(0) var(--rot, none); }
.jr-hero__shape.s-pill { width: 160px; top: 16%; right: 8%; --rot: rotate(-12deg); transform: translateY(20px) rotate(-12deg); transition-delay: 150ms; }
.jr-hero__shape.s-circle-o { width: 110px; top: 32%; left: 6%; transition-delay: 280ms; }
.jr-hero__shape.s-hex-b { width: 90px; top: 50%; right: 18%; --rot: rotate(15deg); transform: translateY(20px) rotate(15deg); transition-delay: 380ms; }
.jr-hero__shape.s-square { width: 80px; bottom: 18%; left: 22%; --rot: rotate(-8deg); transform: translateY(20px) rotate(-8deg); transition-delay: 220ms; }
.jr-hero__shape.s-circle-b { width: 64px; top: 24%; right: 28%; transition-delay: 480ms; }
.jr-hero__shape.s-pill-b { width: 130px; bottom: 22%; right: 6%; --rot: rotate(20deg); transform: translateY(20px) rotate(20deg); transition-delay: 320ms; }

.jr-hero__top { display: flex; justify-content: space-between; align-items: flex-start; }
.jr-hero__eyebrow {
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute);
}
.jr-annot { display: flex; align-items: center; gap: 8px; }
.jr-annot img { width: 50px; opacity: 0.6; }
/* =========================================
   Scroll reveal animations
   ========================================= */
.jr-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.jr-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .jr-reveal { opacity: 1; transform: none; transition: none; }
}

body.is-dark .jr-annot img { filter: invert(1) brightness(1.6); }
body.is-dark img[src*="-outline"],
body.is-dark .jr-folder-cta__folder img { filter: invert(1) brightness(0.92); }

.jr-hero__name {
  display: flex; flex-direction: column;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(4rem, 17vw, 16rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin-top: auto;
  margin-bottom: 32px;
  color: var(--ink);
}
.jr-hero__name span { display: block; }
.jr-hero__name span:nth-child(2) { align-self: flex-end; }

.jr-hero__line {
  display: flex; align-items: flex-end; gap: 32px;
  border-top: 1px solid var(--border-hair);
  padding-top: 26px;
}
.jr-hero__line h1 {
  flex: 1;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 0.98; letter-spacing: -0.03em; color: var(--ink);
  text-align: center;
}

.jr-hero__sub {
  margin-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.jr-hero__role { font-family: var(--font-body); font-size: 14px; color: var(--ink-mute); letter-spacing: 0.02em; }

/* =========================================
   SERVICES
   ========================================= */
.jr-services {
  padding: 160px var(--gutter) 64px;
  position: relative;
}
.jr-services__head {
  display: flex; flex-direction: column; gap: 14px; margin-bottom: 64px;
  max-width: 820px;
}
.jr-services__head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.0; letter-spacing: -0.035em;
}
.jr-services__list { list-style: none; border-top: 1px solid var(--border-hair); }
.jr-service {
  border-bottom: 1px solid var(--border-hair);
  cursor: pointer;
  transition: background var(--dur) var(--ease-out);
}
.jr-service.is-open { background: var(--paper-cool); }
.jr-service__row {
  display: grid; grid-template-columns: 60px 1fr auto 32px;
  align-items: center; gap: 24px;
  padding: 28px 16px;
}
.jr-service__n {
  font-family: var(--font-mono); font-size: 13px; color: var(--ink-mute);
}
.jr-service__row h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  letter-spacing: -0.025em; color: var(--ink); line-height: 1.1;
}
.jr-service__tags { display: flex; gap: 8px; }
.jr-service__toggle {
  font-family: var(--font-display); font-weight: 600; font-size: 24px;
  color: var(--ink-mute); text-align: center;
}
.jr-service__body {
  display: grid; grid-template-columns: 60px 1fr 1fr 32px;
  gap: 24px;
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-in-out), padding var(--dur-slow) var(--ease-in-out);
  padding: 0 16px;
}
.jr-service.is-open .jr-service__body {
  max-height: 360px;
  padding: 0 16px 32px;
}
.jr-service__body p {
  grid-column: 2;
  font-size: 18px; line-height: 1.5; color: var(--ink-soft); max-width: 44ch;
  text-wrap: pretty;
}
.jr-service__thumb {
  grid-column: 3;
  aspect-ratio: 16 / 10; border-radius: 18px;
  display: flex; align-items: flex-end; padding: 16px;
  position: relative; overflow: hidden;
}
.jr-service__thumb::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), transparent 50%);
}
.jr-service__illustration {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  z-index: 0;
  pointer-events: none;
}
.jr-service__thumb > .jr-pill { position: relative; z-index: 1; }

/* =========================================
   WORK GRID
   ========================================= */
.jr-work { padding: 96px var(--gutter) 64px; }
.jr-work__head { margin-bottom: 48px; display: flex; flex-direction: column; gap: 12px; }
.jr-work__head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.0; letter-spacing: -0.035em;
}
.jr-work__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.jr-tile {
  background: var(--paper-cool); border: 1px solid var(--border-hair);
  border-radius: 24px; padding: 14px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  cursor: pointer;
  text-decoration: none; color: inherit;
}
.jr-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); opacity: 1; }
.jr-tile__photo {
  aspect-ratio: 16 / 10; border-radius: 18px;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 16px; position: relative; overflow: hidden;
}
.jr-tile__photo::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.20), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(0,0,0,0.18), transparent 55%);
  pointer-events: none;
}
.jr-tile__photo > * { position: relative; z-index: 1; }
.jr-tile__metric {
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.28);
  padding: 5px 10px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.jr-tile__meta { display: flex; justify-content: space-between; align-items: baseline; padding: 0 8px 6px; }
.jr-tile__meta h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 24px;
  letter-spacing: -0.025em; color: var(--ink);
}
.jr-tile__year { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--ink-mute); }

/* =========================================
   ABOUT
   ========================================= */
.jr-about {
  padding: 120px var(--gutter);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
}
.jr-about__left h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: 0.98; letter-spacing: -0.04em;
}
.jr-about__right { display: flex; flex-direction: column; gap: 24px; }
.jr-about__portrait {
  aspect-ratio: 4 / 5; border-radius: 24px;
  position: relative; overflow: hidden;
  width: 100%; max-width: 420px;
  align-self: center;
  margin-bottom: 8px;
}
.jr-about__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.jr-about__copy { font-size: 17px; line-height: 1.6; color: var(--ink-soft); max-width: 48ch; }
.jr-about__copy + .jr-about__copy { margin-top: -8px; }

/* =========================================
   CHECKLIST
   ========================================= */
.jr-checks {
  padding: 64px var(--gutter) 96px;
  display: flex; flex-direction: column; gap: 36px;
  max-width: 980px; margin: 0 auto;
}
.jr-checks h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.0; letter-spacing: -0.035em;
}
.jr-checks__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.jr-check {
  display: grid; grid-template-columns: 32px 1fr; gap: 16px; align-items: flex-start;
  padding: 22px; border-radius: 20px; background: var(--paper-cool);
  border: 1px solid var(--border-hair);
}
.jr-check__dot {
  width: 28px; height: 28px; border-radius: 999px; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.jr-check__dot svg { width: 16px; height: 16px; }
.jr-check h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.015em; line-height: 1.35; }

/* =========================================
   FOLDER CTA
   ========================================= */
.jr-folder-cta {
  padding: 80px var(--gutter) 40px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.jr-folder-cta__row {
  display: flex; align-items: center; gap: 48px;
}
.jr-folder-cta__row h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.0; letter-spacing: -0.03em; text-align: right;
}
.jr-folder-cta__folder {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none;
  transition: transform var(--dur) var(--ease-out);
}
.jr-folder-cta__folder:hover { transform: translateY(-8px) rotate(-2deg); opacity: 1; }
.jr-folder-cta__folder img { width: 200px; }
.jr-folder-cta__or { display: flex; flex-direction: column; align-items: center; gap: 6px; padding-top: 36px; }

/* =========================================
   NOW
   ========================================= */
.jr-now {
  padding: 120px var(--gutter);
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px;
}
.jr-now__head { display: flex; flex-direction: column; gap: 14px; }
.jr-now__head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.0; letter-spacing: -0.035em;
}
.jr-now__caption { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--ink-mute); }
.jr-now__pulse { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.jr-now__pulse::before { content: ''; width: 8px; height: 8px; border-radius: 999px; background: #22C55E; box-shadow: 0 0 0 0 rgba(34,197,94,.7); animation: pulse 2s var(--ease-out) infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.jr-now__list { list-style: none; display: flex; flex-direction: column; }
.jr-now__item {
  display: grid; grid-template-columns: 90px 1fr auto; gap: 24px;
  align-items: baseline;
  padding: 22px 4px;
  border-top: 1px solid var(--border-hair);
}
.jr-now__item:last-child { border-bottom: 1px solid var(--border-hair); }
.jr-now__kind { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); }
.jr-now__txt { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.1rem, 1.6vw, 1.5rem); letter-spacing: -0.02em; line-height: 1.25; color: var(--ink); }
.jr-now__txt i { color: var(--ink-mute); font-size: 0.92em; }
.jr-now__when { font-family: var(--font-serif); font-style: italic; font-size: 15px; color: var(--ink-mute); white-space: nowrap; }

/* =========================================
   WRITING
   ========================================= */
.jr-writing {
  padding: 96px var(--gutter) 96px;
  max-width: 1180px; margin: 0 auto;
}
.jr-writing__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; gap: 16px; flex-wrap: wrap; }
.jr-writing__head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.0; letter-spacing: -0.035em;
}
.jr-writing__list { list-style: none; border-top: 1px solid var(--border-hair); }
.jr-post {
  display: grid; grid-template-columns: 86px 1fr 100px 28px;
  gap: 24px; align-items: center;
  padding: 24px 6px;
  border-bottom: 1px solid var(--border-hair);
  cursor: pointer;
  text-decoration: none; color: inherit;
  transition: padding-left var(--dur) var(--ease-out);
  position: relative;
}
.jr-post:hover { padding-left: 14px; opacity: 1; }
.jr-post::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 0; background: var(--accent); border-radius: 999px;
  transition: height var(--dur) var(--ease-out);
}
.jr-post:hover::before { height: 60%; }
.jr-post__date { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); }
.jr-post__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.1rem, 1.6vw, 1.4rem); letter-spacing: -0.018em; line-height: 1.25; color: var(--ink); }
.jr-post__time { font-family: var(--font-serif); font-style: italic; font-size: 15px; color: var(--ink-mute); text-align: right; }
.jr-post__arrow { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--ink-mute); text-align: center; }

/* =========================================
   EXPERIENCE
   ========================================= */
.jr-exp {
  padding: 96px var(--gutter);
  background: var(--paper-warm);
  border-top: 1px solid var(--border-hair);
  border-bottom: 1px solid var(--border-hair);
  position: relative;
  overflow: hidden;
}
.jr-exp__inner { max-width: 1180px; margin: 0 auto; }
.jr-exp__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.jr-exp__head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.0; letter-spacing: -0.035em;
}
.jr-exp__tally { font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem, 7vw, 7rem); letter-spacing: -0.04em; line-height: 0.9; color: var(--ink); }
.jr-exp__tally span { display: block; font-family: var(--font-serif); font-style: italic; font-size: 0.28em; color: var(--ink-mute); letter-spacing: 0; line-height: 1; margin-top: 6px; }
.jr-exp__list { list-style: none; }
.jr-role {
  display: grid; grid-template-columns: 200px 1fr 1fr;
  gap: 32px; align-items: flex-start;
  padding: 32px 0;
  border-top: 1px solid var(--border-hair);
}
.jr-role:last-child { border-bottom: 1px solid var(--border-hair); }
.jr-role__when { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); padding-top: 6px; }
.jr-role__title { display: flex; flex-direction: column; gap: 6px; }
.jr-role__title h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.75rem); letter-spacing: -0.025em; line-height: 1.1; }
.jr-role__title span { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--ink-mute); }
.jr-role__blurb { font-size: 16px; line-height: 1.55; color: var(--ink-soft); max-width: 48ch; }
.jr-exp__shape { position: absolute; pointer-events: none; right: -40px; top: 20%; width: 140px; opacity: 0.6; transform: rotate(18deg); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.jr-testi { padding: 120px var(--gutter); }
.jr-testi__inner { max-width: 1180px; margin: 0 auto; }
.jr-testi__head { margin-bottom: 48px; display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.jr-testi__head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.0; letter-spacing: -0.035em;
}
.jr-testi__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.jr-quote {
  background: var(--paper-cool); border: 1px solid var(--border-hair);
  border-radius: 24px; padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.jr-quote__mark { font-family: var(--font-display); font-weight: 800; font-size: 60px; line-height: 0.5; color: var(--accent); height: 24px; }
.jr-quote p { font-size: 17px; line-height: 1.5; color: var(--ink); font-family: var(--font-body); flex: 1; }
.jr-quote__who { display: flex; align-items: center; gap: 12px; padding-top: 10px; border-top: 1px solid var(--border-hair); }
.jr-quote__avatar { width: 36px; height: 36px; border-radius: 999px; flex-shrink: 0; }
.jr-quote__name { font-family: var(--font-display); font-weight: 600; font-size: 14px; line-height: 1.2; letter-spacing: -0.015em; }
.jr-quote__role { font-family: var(--font-serif); font-style: italic; font-size: 13px; color: var(--ink-mute); }

/* =========================================
   CHANNEL (YouTube callout)
   ========================================= */
.jr-channel { padding: 80px var(--gutter); max-width: 1180px; margin: 0 auto; }
.jr-channel__inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px;
  align-items: center;
  background: var(--paper-cool);
  border: 1px solid var(--border-hair);
  border-radius: 32px;
  padding: 56px;
  text-decoration: none; color: inherit;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.jr-channel__inner:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); opacity: 1; }
.jr-channel__left { display: flex; flex-direction: column; gap: 18px; }
.jr-channel__left h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.0; letter-spacing: -0.035em;
}
.jr-channel__copy {
  font-size: 17px; line-height: 1.55; color: var(--ink-soft); max-width: 44ch;
}
.jr-channel__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 13px;
  color: var(--ink); padding-top: 6px;
}
.jr-channel__cta .jr-channel__arrow {
  font-family: var(--font-display); font-weight: 500; font-size: 18px;
  transition: transform var(--dur) var(--ease-out);
}
.jr-channel__inner:hover .jr-channel__arrow { transform: translateX(6px); }
.jr-channel__right {
  position: relative; width: 100%; aspect-ratio: 1 / 1;
  border-radius: 999px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.jr-channel__avatar {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 999px;
}
.jr-channel__play {
  position: absolute; width: 32%; height: 32%;
  color: #fff;
  background: var(--accent);
  border-radius: 999px; padding: 12%;
  box-shadow: 0 10px 30px rgba(31, 75, 255, 0.45);
  transition: transform var(--dur) var(--ease-out);
}
.jr-channel__inner:hover .jr-channel__play { transform: scale(1.08); }

@media (max-width: 900px) {
  .jr-channel__inner { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .jr-channel__right { max-width: 220px; margin: 0 auto; }
}

/* =========================================
   CONTACT
   ========================================= */
.jr-contact {
  position: relative;
  padding: 120px var(--gutter);
  display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center;
  background: var(--paper-warm);
  border-top: 1px solid var(--border-hair);
  border-bottom: 1px solid var(--border-hair);
  overflow: hidden;
}
.jr-contact h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.98; letter-spacing: -0.04em;
  position: relative; z-index: 1;
}
.jr-contact__sub { font-size: 18px; color: var(--ink-mute); position: relative; z-index: 1; max-width: 56ch; text-wrap: pretty; }
.jr-contact__cta {
  display: inline-flex; flex-direction: column; gap: 0;
  background: var(--ink); color: var(--paper);
  padding: 18px 36px; border: 1.5px solid var(--ink); border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  cursor: pointer; transition: all var(--dur) var(--ease-out);
  position: relative; z-index: 1;
}
.jr-contact__cta:hover { background: var(--paper); color: var(--ink); }
.jr-contact__cta-email { font-family: var(--font-mono); font-weight: 400; font-size: 12px; opacity: 0.6; }
.jr-contact__shapes { position: absolute; inset: 0; pointer-events: none; }
.jr-contact__shapes img:nth-child(1) { position: absolute; left: 6%; bottom: 14%; width: 80px; }
.jr-contact__shapes img:nth-child(2) { position: absolute; right: 8%; top: 18%; width: 120px; transform: rotate(-15deg); }
.jr-contact__shapes img:nth-child(3) { position: absolute; left: 12%; top: 16%; width: 70px; transform: rotate(20deg); }
.jr-contact__socials { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; margin-top: 8px; }
.jr-contact__socials a { padding: 8px 16px; border: 1px solid var(--border-hair); border-radius: 999px; text-decoration: none; color: var(--ink); font-size: 13px; font-family: var(--font-body); font-weight: 500; transition: all var(--dur) var(--ease-out); }
.jr-contact__socials a:hover { border-color: var(--ink); opacity: 1; }
body.is-dark .jr-contact__cta { background: var(--paper); color: var(--ink); border-color: var(--paper); }
body.is-dark .jr-contact__cta:hover { background: transparent; color: var(--paper); }

/* =========================================
   FOOTER
   ========================================= */
.jr-footer { padding: 72px var(--gutter) 32px; display: flex; flex-direction: column; gap: 48px; }
.jr-footer__meta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; max-width: 1080px; }
.jr-footer__col { display: flex; flex-direction: column; gap: 12px; }
.jr-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.jr-footer__col li, .jr-footer__col a {
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  letter-spacing: -0.015em; color: var(--ink); text-decoration: none;
}
.jr-footer__col a:hover { opacity: 0.55; }

.jr-footer__billboard {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(4rem, 18vw, 18rem);
  line-height: 0.88; letter-spacing: -0.05em;
  color: var(--ink);
}
.jr-footer__mono { width: clamp(60px, 9vw, 140px); height: auto; }
body.is-dark .jr-footer__mono { filter: invert(1) brightness(1.5); }

.jr-footer__base { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border-hair); gap: 16px; flex-wrap: wrap; }
.jr-footer__role { font-family: var(--font-body); font-size: 14px; color: var(--ink-mute); }

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 900px) {
  .jr-nav__center { display: none; }
  .jr-work__grid { grid-template-columns: 1fr; }
  .jr-about { grid-template-columns: 1fr; gap: 32px; }
  .jr-checks__list { grid-template-columns: 1fr; }
  .jr-service__row { grid-template-columns: 40px 1fr 28px; }
  .jr-service__tags { display: none; }
  .jr-service__body { grid-template-columns: 1fr; }
  .jr-service__body p, .jr-service__thumb { grid-column: 1; }
  .jr-now { grid-template-columns: 1fr; gap: 28px; }
  .jr-now__item { grid-template-columns: 80px 1fr; }
  .jr-now__when { grid-column: 1 / -1; padding-left: 104px; }
  .jr-post { grid-template-columns: 80px 1fr 24px; }
  .jr-post__time { display: none; }
  .jr-role { grid-template-columns: 1fr; gap: 10px; }
  .jr-testi__grid { grid-template-columns: 1fr; }
  .jr-footer__meta { grid-template-columns: 1fr 1fr; }
}
