:root {
  --jl-bg: #080808;
  --jl-panel: #0d0d0d;
  --jl-panel-raised: #121210;
  --jl-ink: #f4f1e9;
  --jl-muted: #aaa69c;
  --jl-gold: #c8a64b;
  --jl-gold-light: #e0c875;
  --jl-line: rgba(244, 241, 233, 0.14);
  --jl-line-gold: rgba(200, 166, 75, 0.5);
  --jl-max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--jl-bg);
}

.jl-page {
  min-height: 100svh;
  overflow: hidden;
  color: var(--jl-ink);
  background:
    radial-gradient(900px 560px at 8% 8%, rgba(200, 166, 75, 0.08), transparent 66%),
    var(--jl-bg);
}

.jl-wrap {
  width: min(var(--jl-max), calc(100% - 48px));
  margin-inline: auto;
}

.jl-profile-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding-top: 76px;
  border-bottom: 1px solid var(--jl-line);
}

.jl-profile-mark {
  color: var(--jl-ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.jl-profile-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.jl-profile-links a {
  position: relative;
  padding: 20px 14px 18px;
  color: var(--jl-muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.jl-profile-links a:hover,
.jl-profile-links a[aria-current="page"] {
  color: var(--jl-ink);
}

.jl-profile-links a[aria-current="page"]::after {
  position: absolute;
  right: 14px;
  bottom: -1px;
  left: 14px;
  height: 2px;
  background: var(--jl-gold);
  content: "";
}

.jl-profile-links a:focus-visible,
.jl-profile-mark:focus-visible,
.jl-button:focus-visible,
.jl-path:focus-visible,
.jl-text-link:focus-visible {
  outline: 2px solid var(--jl-gold-light);
  outline-offset: 4px;
}

.jl-home-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  min-height: min(730px, calc(100svh - 144px));
  border-bottom: 1px solid var(--jl-line);
}

.jl-portrait {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-right: 1px solid var(--jl-line);
}

.jl-portrait::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to top, var(--jl-bg), transparent);
  content: "";
  pointer-events: none;
}

.jl-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.jl-home-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 7vw, 88px) clamp(42px, 7vw, 92px);
}

.jl-eyebrow {
  margin: 0 0 18px;
  color: var(--jl-gold-light);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.jl-display {
  max-width: 740px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 7.2vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-wrap: balance;
}

.jl-founder-lines {
  display: grid;
  gap: 5px;
  margin: 28px 0 0;
  color: #d4d0c7;
  font-size: clamp(0.86rem, 1.35vw, 1rem);
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jl-positioning {
  max-width: 670px;
  margin: 32px 0 0;
  color: var(--jl-muted);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.5;
  text-wrap: balance;
}

.jl-paths {
  padding: clamp(60px, 8vw, 104px) 0;
}

.jl-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1.2fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.jl-section-head h2,
.jl-page-heading,
.jl-section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.jl-section-head h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1;
}

.jl-section-head p {
  max-width: 650px;
  margin: 0;
  color: var(--jl-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.jl-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.jl-path {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid var(--jl-line);
  border-radius: 2px;
  background: var(--jl-panel);
  color: var(--jl-ink);
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.jl-path::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--jl-gold);
  content: "";
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 260ms ease;
}

.jl-path:hover {
  border-color: var(--jl-line-gold);
  background: var(--jl-panel-raised);
  transform: translateY(-5px);
}

.jl-path:hover::before {
  transform: scaleX(1);
}

.jl-path-number {
  color: var(--jl-gold-light);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.jl-path h3 {
  margin: 48px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.jl-path p {
  max-width: 540px;
  margin: 0 0 36px;
  color: var(--jl-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.jl-path-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--jl-ink);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.jl-path-action::after {
  content: "\2192";
  color: var(--jl-gold-light);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.jl-path:hover .jl-path-action::after {
  transform: translateX(5px);
}

.jl-inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: end;
  padding: clamp(70px, 10vw, 132px) 0 clamp(64px, 9vw, 112px);
  border-bottom: 1px solid var(--jl-line);
}

.jl-banner {
  margin-top: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid var(--jl-line);
  border-radius: 2px;
  background: #020508;
}

.jl-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.jl-banner-social {
  background: #f1f2f4;
}

.jl-banner + .jl-inner-hero {
  padding-top: clamp(52px, 7vw, 86px);
}

.jl-page-heading {
  max-width: 780px;
  font-size: clamp(3.25rem, 8vw, 7.2rem);
  line-height: 0.92;
}

.jl-lede {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--jl-muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.jl-hero-aside {
  padding: 24px 0 4px 28px;
  border-left: 1px solid var(--jl-line-gold);
}

.jl-hero-aside p {
  margin: 0;
  color: #d7d2c8;
  font-size: 0.96rem;
  line-height: 1.7;
}

.jl-content {
  padding: clamp(64px, 9vw, 112px) 0;
}

.jl-content-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-top: 1px solid var(--jl-line);
}

.jl-content-section {
  grid-column: span 6;
  min-height: 270px;
  padding: clamp(30px, 4vw, 48px);
  border-right: 1px solid var(--jl-line);
  border-bottom: 1px solid var(--jl-line);
}

.jl-content-section:nth-child(2n) {
  border-right: 0;
}

.jl-content-section.jl-wide {
  grid-column: span 12;
  min-height: 0;
  border-right: 0;
}

.jl-section-index {
  display: block;
  margin-bottom: 42px;
  color: var(--jl-gold-light);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.jl-section-title {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.jl-content-section p {
  max-width: 650px;
  margin: 0;
  color: var(--jl-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.jl-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  margin-top: clamp(52px, 8vw, 88px);
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--jl-line-gold);
  border-radius: 2px;
  background: var(--jl-panel);
}

.jl-contact h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.jl-contact p {
  max-width: 690px;
  margin: 0;
  color: var(--jl-muted);
  line-height: 1.65;
}

.jl-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.jl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--jl-line);
  border-radius: 2px;
  color: var(--jl-ink);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.jl-button:hover {
  border-color: var(--jl-gold);
  background: rgba(200, 166, 75, 0.08);
}

.jl-button-primary {
  border-color: var(--jl-gold);
  background: var(--jl-gold);
  color: #090909;
}

.jl-button-primary:hover {
  background: var(--jl-gold-light);
  color: #090909;
}

.jl-identity-note {
  padding: 32px 0 64px;
  border-top: 1px solid var(--jl-line);
  color: var(--jl-muted);
  font-size: 0.86rem;
  line-height: 1.7;
  text-align: center;
}

.jl-qr {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 8vw, 96px);
  align-items: center;
  margin-bottom: clamp(64px, 9vw, 112px);
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--jl-line);
  border-radius: 2px;
  background: var(--jl-panel);
}

.jl-qr h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.jl-qr p:not(.jl-eyebrow) {
  max-width: 580px;
  margin: 0;
  color: var(--jl-muted);
  line-height: 1.65;
}

.jl-qr-link {
  display: block;
  padding: 12px;
  border: 1px solid var(--jl-line-gold);
  border-radius: 2px;
  background: #f4f1e9;
}

.jl-qr-link img {
  display: block;
  width: clamp(150px, 18vw, 210px);
  height: auto;
}

.jl-qr-link:focus-visible {
  outline: 2px solid var(--jl-gold-light);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .jl-wrap {
    width: min(100% - 36px, var(--jl-max));
  }

  .jl-profile-nav {
    padding-top: 70px;
  }

  .jl-home-hero,
  .jl-inner-hero {
    grid-template-columns: 1fr;
  }

  .jl-home-hero {
    min-height: 0;
  }

  .jl-portrait {
    min-height: 56vw;
    max-height: 620px;
    border-right: 0;
    border-bottom: 1px solid var(--jl-line);
  }

  .jl-portrait img {
    object-position: 50% 35%;
  }

  .jl-home-intro {
    padding-left: 0;
  }

  .jl-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .jl-inner-hero {
    gap: 40px;
    align-items: start;
  }

  .jl-hero-aside {
    max-width: 620px;
  }

  .jl-contact {
    grid-template-columns: 1fr;
  }

  .jl-qr {
    grid-template-columns: 1fr;
  }

  .jl-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .jl-wrap {
    width: min(100% - 28px, var(--jl-max));
  }

  .jl-profile-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding-top: 78px;
  }

  .jl-profile-mark {
    padding: 15px 0 6px;
  }

  .jl-profile-links {
    width: 100%;
    justify-content: space-between;
  }

  .jl-profile-links a {
    padding: 13px 4px 14px;
    font-size: 0.7rem;
  }

  .jl-profile-links a[aria-current="page"]::after {
    right: 4px;
    left: 4px;
  }

  .jl-portrait {
    min-height: 88vw;
  }

  .jl-display {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  .jl-positioning {
    margin-top: 26px;
    font-size: 1.12rem;
  }

  .jl-path-grid {
    grid-template-columns: 1fr;
  }

  .jl-path {
    min-height: 330px;
  }

  .jl-page-heading {
    font-size: clamp(3.25rem, 18vw, 5.5rem);
  }

  .jl-content-section,
  .jl-content-section.jl-wide {
    grid-column: span 12;
    min-height: 0;
    border-right: 0;
  }

  .jl-section-index {
    margin-bottom: 30px;
  }

  .jl-contact {
    padding: 30px 24px;
  }

  .jl-actions,
  .jl-button {
    width: 100%;
  }

  .jl-qr-link {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .jl-path,
  .jl-path::before,
  .jl-path-action::after,
  .jl-button {
    transition: none;
  }
}
