/* =========================================================
     JBC · ATELIER (V1) — WordPress-ready static stylesheet
     All styles scoped under .jbc to avoid conflicts with theme CSS.
     Drop the markup below into a Custom HTML block, Elementor
     HTML widget, or a page template. Copy the <style> block to
     style.css of your child theme (or keep inline).
  ========================================================= */

  html, body { margin: 0; padding: 0; }

  .jbc, .jbc *, .jbc *::before, .jbc *::after { box-sizing: border-box; }
  .jbc {
    --bg: #14110e;
    --bg-2: #1c1813;
    --bg-3: #241f18;
    --line: #2e2820;
    --ink: #f3ead9;
    --ink-2: #b8ad96;
    --ink-3: #6e6655;
    --accent: #c8884a;
    --accent-2: #e0a76b;
    font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
    color: var(--ink);
    background: var(--bg);
    letter-spacing: 0.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .jbc img { max-width: 100%; display: block; }
  .jbc a { color: inherit; }
  .jbc button { font: inherit; }

  .jbc .mono { font-family: 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0.02em; }
  .jbc .sans { font-family: 'Inter', system-ui, sans-serif; letter-spacing: -0.01em; }

  /* ── Top bar / Nav ───────────────────────────────────────── */
  .jbc .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 64px; border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(20,17,14,0.95), rgba(20,17,14,0.7));
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(8px);
  }
  .jbc .logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
  .jbc .logo-mark {
    width: 38px; height: 38px; border: 1px solid var(--accent);
    display: grid; place-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 20px; color: var(--accent);
    position: relative; flex-shrink: 0;
  }
  .jbc .logo-mark::before, .jbc .logo-mark::after {
    content: ''; position: absolute; background: var(--accent);
  }
  .jbc .logo-mark::before { top: -1px; left: -1px; width: 6px; height: 6px; }
  .jbc .logo-mark::after  { bottom: -1px; right: -1px; width: 6px; height: 6px; }
  .jbc .logo-name { font-size: 18px; letter-spacing: 0.18em; text-transform: uppercase; line-height: 1; }
  .jbc .logo-sub { font-size: 11px; color: var(--ink-3); letter-spacing: 0.3em; text-transform: uppercase; margin-top: 4px; }
  .jbc .nav-links { display: flex; gap: 40px; list-style: none; padding: 0; margin: 0; }
  .jbc .nav-links a {
    color: var(--ink-2); text-decoration: none; font-size: 14px;
    letter-spacing: 0.16em; text-transform: uppercase; transition: color .2s;
  }
  .jbc .nav-links a:hover { color: var(--accent); }
  .jbc .nav-cta {
    border: 1px solid var(--ink-2); padding: 10px 22px;
    font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink);
    cursor: pointer; background: transparent; transition: all .2s;
    text-decoration: none; display: inline-block;
  }
  .jbc .nav-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
  .jbc .nav-toggle { display: none; background: none; border: none; color: var(--ink); padding: 8px; cursor: pointer; }
  .jbc .nav-toggle svg { width: 24px; height: 24px; }

  /* ── Hero ────────────────────────────────────────────────── */
  .jbc .hero {
    padding: 120px 64px 100px; position: relative;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end;
  }
  .jbc .eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 32px;
    display: flex; align-items: center; gap: 14px;
  }
  .jbc .eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
  .jbc h1 {
    font-size: 112px; line-height: 0.95; font-weight: 400; margin: 0;
    letter-spacing: -0.025em;
  }
  .jbc h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
  .jbc .hero-meta { font-size: 13px; color: var(--ink-3); border-left: 1px solid var(--line); padding-left: 24px; }
  .jbc .hero-meta p { margin: 0 0 16px; line-height: 1.7; color: var(--ink-2); font-size: 16px; font-family: 'Inter', sans-serif; }
  .jbc .hero-meta .label {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px;
  }
  .jbc .hero-meta .label.gap { margin-top: 24px; }

  /* ── Brand ticker ────────────────────────────────────────── */
  .jbc .ticker {
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    display: flex; padding: 18px 64px; gap: 64px; overflow: hidden;
    font-family: 'JetBrains Mono', monospace; font-size: 12px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3);
    flex-wrap: wrap;
  }
  .jbc .ticker span {
    display: flex; align-items: center; gap: 14px; white-space: nowrap;
  }
  .jbc .ticker span::before { content: '◆'; color: var(--accent); font-size: 8px; }

  /* ── Section heads ───────────────────────────────────────── */
  .jbc section.products,
  .jbc section.contact { padding: 120px 64px; }
  .jbc section.services { padding: 120px 64px; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

  .jbc .section-head {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 64px; padding-bottom: 32px; border-bottom: 1px solid var(--line);
    gap: 24px;
  }
  .jbc .section-head h2 { font-size: 64px; line-height: 1; font-weight: 400; margin: 0; letter-spacing: -0.02em; }
  .jbc .section-head h2 em { font-style: italic; color: var(--accent); }
  .jbc .section-head .count {
    font-family: 'JetBrains Mono', monospace; font-size: 12px;
    color: var(--ink-3); letter-spacing: 0.2em; white-space: nowrap;
  }

  /* ── Catalog grid ────────────────────────────────────────── */
  .jbc .cat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--line); border: 1px solid var(--line);
  }
  .jbc .cat {
    background: var(--bg); padding: 40px 32px 36px; min-height: 280px;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: background .3s; cursor: pointer; position: relative;
    text-decoration: none; color: inherit;
  }
  .jbc .cat:hover { background: var(--bg-2); }
  .jbc .cat:hover .cat-arrow { transform: translateX(8px); color: var(--accent); }
  .jbc .cat .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-3); letter-spacing: 0.2em; }
  .jbc .cat h3 { font-size: 36px; line-height: 1.05; font-weight: 400; margin: 18px 0 12px; letter-spacing: -0.01em; }
  .jbc .cat .items { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink-2); line-height: 1.6; letter-spacing: 0; }
  .jbc .cat-arrow { font-size: 24px; color: var(--ink-3); transition: all .3s; align-self: flex-end; }

  /* ── Services grid ───────────────────────────────────────── */
  .jbc .svc-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px;
  }
  .jbc .svc { padding: 32px 0; border-top: 1px solid var(--line); }
  .jbc .svc .tag {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    letter-spacing: 0.24em; color: var(--accent); text-transform: uppercase;
  }
  .jbc .svc h4 { font-size: 28px; font-weight: 400; margin: 16px 0 10px; line-height: 1.1; }
  .jbc .svc p { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--ink-2); line-height: 1.6; margin: 0; letter-spacing: 0; }
  .jbc .svc .price {
    font-family: 'JetBrains Mono', monospace; font-size: 12px;
    color: var(--ink-3); margin-top: 18px; letter-spacing: 0.1em;
  }
  .jbc .svc .price b { color: var(--ink); font-weight: 400; }

  /* ── Contact ─────────────────────────────────────────────── */
  .jbc .contact { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .jbc .contact-head h2 { font-size: 80px; line-height: 0.95; font-weight: 400; margin: 0 0 24px; letter-spacing: -0.025em; }
  .jbc .contact-head h2 em { font-style: italic; color: var(--accent); }
  .jbc .contact-head p { font-family: 'Inter', sans-serif; color: var(--ink-2); font-size: 15px; line-height: 1.7; max-width: 360px; }
  .jbc .contact-info { display: flex; flex-direction: column; gap: 0; }
  .jbc .contact-row { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 20px 0; border-top: 1px solid var(--line); }
  .jbc .contact-row .k {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    letter-spacing: 0.24em; color: var(--ink-3); text-transform: uppercase; padding-top: 4px;
  }
  .jbc .contact-row .v { font-size: 22px; line-height: 1.3; }
  .jbc .contact-row .v small {
    font-family: 'Inter', sans-serif; font-size: 13px; color: var(--ink-3);
    display: block; margin-top: 4px; letter-spacing: 0;
  }
  .jbc .contact-row a { text-decoration: none; color: inherit; }
  .jbc .contact-row a:hover { color: var(--accent); }

  /* ── Footer ──────────────────────────────────────────────── */
  .jbc .footer {
    padding: 48px 64px; border-top: 1px solid var(--line);
    display: flex; justify-content: space-between;
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--ink-3); letter-spacing: 0.16em; text-transform: uppercase;
    flex-wrap: wrap; gap: 16px;
  }

  /* ── Responsive ──────────────────────────────────────────── */
  /* ── Animations · tech/geeky ──────────────────────────────── */

  /* ── Hero animated background — full tech stack ──
     Layers (back to front):
       1. canvas#jbc-rain   — matrix-style hex/binary digit rain
       2. .jbc-hero-grid    — drifting grid lattice
       3. .jbc-hero-orbs    — slowly orbiting accent glow blobs
       4. .jbc-hero-scan    — sweeping horizontal scan-line
       5. .jbc-hero-noise   — faint film/CRT scanline overlay
  */
  .jbc .hero { overflow: hidden; isolation: isolate; }
  .jbc .hero > .jbc-bg { position: absolute; inset: 0; pointer-events: none; }
  .jbc .hero > * { position: relative; z-index: 1; }

  /* 1. matrix rain canvas */
  .jbc #jbc-rain { z-index: 0; opacity: 0.35; }

  /* 2. drifting grid */
  .jbc .jbc-hero-grid {
    z-index: 1;
    background-image:
      linear-gradient(rgba(200,136,74,0.18) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,136,74,0.18) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 70% at 70% 50%, #000 25%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 50%, #000 25%, transparent 80%);
    animation: jbc-grid-drift 22s linear infinite;
  }
  @keyframes jbc-grid-drift {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 56px 56px, 56px 56px; }
  }

  /* 3. orbiting accent orbs */
  .jbc .jbc-hero-orbs { z-index: 2; overflow: hidden; }
  .jbc .jbc-hero-orbs span {
    position: absolute; border-radius: 50%; filter: blur(60px);
    mix-blend-mode: screen; opacity: 0.55;
  }
  .jbc .jbc-hero-orbs span:nth-child(1) {
    width: 420px; height: 420px; top: -120px; right: -80px;
    background: radial-gradient(circle, rgba(200,136,74,0.55), transparent 70%);
    animation: jbc-orb-a 14s ease-in-out infinite alternate;
  }
  .jbc .jbc-hero-orbs span:nth-child(2) {
    width: 320px; height: 320px; bottom: -100px; left: 20%;
    background: radial-gradient(circle, rgba(224,167,107,0.35), transparent 70%);
    animation: jbc-orb-b 18s ease-in-out infinite alternate;
  }
  .jbc .jbc-hero-orbs span:nth-child(3) {
    width: 240px; height: 240px; top: 30%; left: -80px;
    background: radial-gradient(circle, rgba(110,102,85,0.25), transparent 70%);
    animation: jbc-orb-c 22s ease-in-out infinite alternate;
  }
  @keyframes jbc-orb-a { to { transform: translate(-60px, 80px) scale(1.15); } }
  @keyframes jbc-orb-b { to { transform: translate(120px, -60px) scale(1.1); } }
  @keyframes jbc-orb-c { to { transform: translate(80px, 60px) scale(1.2); } }

  /* 4. sweeping scan beam */
  .jbc .jbc-hero-scan { z-index: 3; overflow: hidden; }
  .jbc .jbc-hero-scan::before {
    content: ''; position: absolute; left: 0; right: 0; height: 120px;
    background: linear-gradient(180deg, transparent, rgba(200,136,74,0.12) 50%, transparent);
    animation: jbc-beam 7s ease-in-out infinite;
  }
  @keyframes jbc-beam {
    0%   { top: -120px; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: 110%; opacity: 0; }
  }

  /* 5. CRT scanlines */
  .jbc .jbc-hero-noise {
    z-index: 4;
    background: repeating-linear-gradient(
      to bottom, transparent 0, transparent 3px,
      rgba(200,136,74,0.03) 3px, rgba(200,136,74,0.03) 4px
    );
    mix-blend-mode: screen;
    animation: jbc-scan 5s linear infinite;
  }
  @keyframes jbc-scan {
    from { transform: translateY(-4px); }
    to   { transform: translateY(0); }
  }

  /* corner brackets — give the hero a HUD feel */
  .jbc .jbc-hud { z-index: 5; }
  .jbc .jbc-hud i {
    position: absolute; width: 18px; height: 18px;
    border: 1px solid var(--accent); opacity: 0.6;
  }
  .jbc .jbc-hud i:nth-child(1) { top: 20px; left: 20px; border-right: none; border-bottom: none; }
  .jbc .jbc-hud i:nth-child(2) { top: 20px; right: 20px; border-left: none; border-bottom: none; }
  .jbc .jbc-hud i:nth-child(3) { bottom: 20px; left: 20px; border-right: none; border-top: none; }
  .jbc .jbc-hud i:nth-child(4) { bottom: 20px; right: 20px; border-left: none; border-top: none; }

  /* a small live "telemetry" strip in the hero corner */
  .jbc .jbc-tel {
    position: absolute; top: 28px; right: 64px; z-index: 6;
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3);
    display: flex; gap: 18px; align-items: center;
  }
  .jbc .jbc-tel b { color: var(--accent); font-weight: 400; }
  .jbc .jbc-tel .led {
    width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: jbc-led 1.6s ease-in-out infinite;
  }

  /* Logo mark — pulsing scan-line */
  .jbc .logo-mark { overflow: hidden; }
  .jbc .logo-mark::before { animation: jbc-corner-pulse 2.4s ease-in-out infinite; }
  .jbc .logo-mark::after  { animation: jbc-corner-pulse 2.4s ease-in-out infinite 1.2s; }
  @keyframes jbc-corner-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.35; transform: scale(1.4); }
  }

  /* Eyebrow rule — animated draw */
  .jbc .eyebrow::before { animation: jbc-rule-draw 2s ease-out forwards; transform-origin: left; transform: scaleX(0); }
  @keyframes jbc-rule-draw { to { transform: scaleX(1); } }

  /* H1 — letter reveal on load */
  .jbc h1 {
    overflow: hidden;
  }
  .jbc h1 > * { display: inline-block; opacity: 0; transform: translateY(24px); animation: jbc-rise 0.7s cubic-bezier(.2,.7,.2,1) forwards; }
  .jbc h1 br { display: block; }
  .jbc h1 .w1 { animation-delay: 0.05s; }
  .jbc h1 .w2 { animation-delay: 0.18s; }
  .jbc h1 .w3 { animation-delay: 0.32s; }
  .jbc h1 .w4 { animation-delay: 0.48s; }
  @keyframes jbc-rise {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Typewriter caret on hero meta first line */
  .jbc .hero-meta .label::after {
    content: '▌'; color: var(--accent); margin-left: 6px;
    animation: jbc-blink 1.05s steps(2, end) infinite;
  }
  @keyframes jbc-blink { 50% { opacity: 0; } }

  /* Marquee ticker — actually scroll */
  .jbc .ticker {
    flex-wrap: nowrap;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }
  .jbc .ticker .track {
    display: flex; gap: 64px; flex-shrink: 0;
    animation: jbc-marquee 38s linear infinite;
  }
  .jbc .ticker:hover .track { animation-play-state: paused; }
  @keyframes jbc-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* Scroll-reveal — fade up when entering viewport */
  .jbc [data-reveal] {
    opacity: 0; transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--d, 0s);
  }
  .jbc [data-reveal].is-in { opacity: 1; transform: none; }

  /* Catalog cards — subtle hover lift + scanning highlight */
  .jbc .cat { overflow: hidden; }
  .jbc .cat::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(115deg, transparent 40%, rgba(200, 136, 74, 0.08) 50%, transparent 60%);
    transform: translateX(-120%); transition: transform .9s cubic-bezier(.2,.7,.2,1);
    pointer-events: none;
  }
  .jbc .cat:hover::before { transform: translateX(120%); }
  .jbc .cat .num { transition: color .3s, letter-spacing .3s; }
  .jbc .cat:hover .num { color: var(--accent); letter-spacing: 0.32em; }

  /* Service rows — top-line draw on hover */
  .jbc .svc { position: relative; transition: transform .3s; }
  .jbc .svc::after {
    content: ''; position: absolute; top: -1px; left: 0; height: 1px; width: 0;
    background: var(--accent); transition: width .5s cubic-bezier(.2,.7,.2,1);
  }
  .jbc .svc:hover::after { width: 100%; }
  .jbc .svc:hover { transform: translateY(-2px); }

  /* Section heads — animated em rule */
  .jbc .section-head { position: relative; }
  .jbc .section-head::after {
    content: ''; position: absolute; bottom: -1px; left: 0; height: 1px;
    width: 0; background: var(--accent);
    transition: width 1.2s cubic-bezier(.2,.7,.2,1);
  }
  .jbc .section-head.is-in::after { width: 80px; }

  /* Floating boot terminal — geeky widget bottom-right */
  .jbc .boot {
    position: fixed; right: 24px; bottom: 24px; z-index: 60;
    width: 320px; max-width: calc(100vw - 32px);
    background: rgba(20, 17, 14, 0.92); border: 1px solid var(--line);
    backdrop-filter: blur(8px);
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--ink-2); padding: 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    transform: translateY(140%); opacity: 0;
    animation: jbc-boot-in 0.6s cubic-bezier(.2,.7,.2,1) 0.6s forwards;
  }
  @keyframes jbc-boot-in { to { transform: none; opacity: 1; } }
  .jbc .boot-head {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px; border-bottom: 1px solid var(--line);
    color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase;
    font-size: 10px;
  }
  .jbc .boot-head .lights { display: flex; gap: 5px; margin-right: 6px; }
  .jbc .boot-head .lights span { width: 8px; height: 8px; border-radius: 50%; background: var(--bg-3); }
  .jbc .boot-head .lights span:first-child { background: var(--accent); box-shadow: 0 0 6px var(--accent); animation: jbc-led 1.6s ease-in-out infinite; }
  .jbc .boot-close {
    margin-left: auto; background: none; border: none; color: var(--ink-3);
    cursor: pointer; padding: 0 4px; font: inherit;
  }
  .jbc .boot-close:hover { color: var(--accent); }
  .jbc .boot-body { padding: 12px 14px; min-height: 110px; line-height: 1.7; }
  .jbc .boot-body .line { white-space: nowrap; overflow: hidden; }
  .jbc .boot-body .ok  { color: #93c47d; }
  .jbc .boot-body .acc { color: var(--accent); }
  .jbc .boot-body .caret::after { content: '▌'; margin-left: 3px; color: var(--accent); animation: jbc-blink 1s steps(2, end) infinite; }
  @keyframes jbc-led { 50% { opacity: 0.4; } }

  @media (max-width: 720px) {
    .jbc .boot { display: none; }
  }

  /* Respect prefers-reduced-motion */
  @media (prefers-reduced-motion: reduce) {
    .jbc *, .jbc *::before, .jbc *::after {
      animation: none !important; transition: none !important;
    }
    .jbc h1 > * { opacity: 1; transform: none; }
    .jbc [data-reveal] { opacity: 1; transform: none; }
  }

  @media (max-width: 1100px) {
    .jbc .hero { grid-template-columns: 1fr; gap: 56px; padding: 80px 40px 80px; }
    .jbc h1 { font-size: 88px; }
    .jbc .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .jbc .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .jbc .contact { grid-template-columns: 1fr; gap: 48px; }
    .jbc .contact-head h2 { font-size: 64px; }
  }

  @media (max-width: 720px) {
    .jbc .nav { padding: 20px 24px; }
    .jbc .nav-links, .jbc .nav-cta { display: none; }
    .jbc .nav-toggle { display: inline-flex; }
    .jbc .nav.is-open .nav-links {
      display: flex; flex-direction: column; gap: 18px;
      position: absolute; top: 100%; left: 0; right: 0;
      background: var(--bg-2); padding: 24px; border-bottom: 1px solid var(--line);
    }
    .jbc .nav.is-open .nav-cta { display: inline-block; margin: 0 24px 24px; }

    .jbc .hero { padding: 64px 24px; }
    .jbc h1 { font-size: 56px; }
    .jbc .ticker { padding: 16px 24px; gap: 32px; font-size: 11px; }

    .jbc section.products, .jbc section.services, .jbc section.contact { padding: 80px 24px; }
    .jbc .section-head { flex-direction: column; align-items: flex-start; }
    .jbc .section-head h2 { font-size: 44px; }

    .jbc .cat-grid { grid-template-columns: 1fr; }
    .jbc .cat { min-height: 220px; padding: 32px 24px; }
    .jbc .cat h3 { font-size: 30px; }

    .jbc .svc-grid { grid-template-columns: 1fr; gap: 0; }

    .jbc .contact-head h2 { font-size: 48px; }
    .jbc .contact-row { grid-template-columns: 1fr; gap: 8px; }
    .jbc .contact-row .v { font-size: 20px; }

    .jbc .footer { padding: 32px 24px; flex-direction: column; gap: 12px; text-align: left; }
  }