/* /press */
.press { padding: 72px 0 96px; }
  .press .container { max-width: 1120px; }

  /* ===== Top: hero (left) + contact card (right) ===== */
  .pr-top {
    display: grid;
    grid-template-columns: 1.4fr 0.82fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--border);
  }
  .pr-masthead h1 {
    font-size: clamp(34px, 3.9vw, 50px);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-top: 20px;
    padding-bottom: 0.08em;
  }
  .pr-masthead h1 .accent { color: var(--primary-strong); font-style: italic; }
  [data-theme="dark"] .pr-masthead h1 .accent { color: var(--primary); }
  .pr-masthead h1 br { display: none; }
  @media (min-width: 640px) { .pr-masthead h1 br { display: inline; } }
  .pr-masthead .lede { margin-top: 30px; max-width: 46ch; }

  /* Contact card */
  .desk {
    align-self: end;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-md);
    padding: 24px 26px 22px;
  }
  .contact-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
  }
  .contact-email {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-size: clamp(20px, 1.9vw, 27px);
    letter-spacing: -0.025em; line-height: 1.15;
    color: var(--text);
    transition: color 0.15s;
  }
  .contact-email i { color: var(--primary-strong); font-size: 0.82em; }
  [data-theme="dark"] .contact-email i { color: var(--primary); }
  .contact-email:hover { color: var(--primary-strong); }
  [data-theme="dark"] .contact-email:hover { color: var(--primary); }
  .desk .reply { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); color: var(--muted); font-size: 14px; line-height: 1.6; }

  /* ===== Section heading row ===== */
  .pr-section-head {
    margin-top: 96px;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }
  .pr-section-head .kicker {
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--primary-strong);
  }
  [data-theme="dark"] .pr-section-head .kicker { color: var(--primary); }
  .pr-section-head h2 { font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.02em; margin-top: 8px; }
  .pr-section-head .note { color: var(--muted); font-size: 13.5px; max-width: 30ch; text-align: right; line-height: 1.5; }

  /* ===== Logo grid ===== */
  .pr-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .pr-rowlabel {
    display: flex; align-items: center; gap: 11px;
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 18px;
  }
  .pr-rowlabel::after { content: ""; flex: 1; height: 1px; background: var(--border); }
  .pr-rowlabel .sw { width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0; box-shadow: inset 0 0 0 1px rgba(128,128,128,0.25); }
  .pr-grid + .pr-rowlabel { margin-top: 52px; }
  .tile {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.15s;
  }
  .tile:hover { border-color: var(--border-strong); }
  .tile .preview {
    position: relative;
    aspect-ratio: 3 / 2;
    display: grid; place-items: center;
    overflow: hidden;
    background: #eef0e9;
  }
  .tile .preview.on-dark { background: #17181a; }
  .tile .preview.on-light { background: #e6e8e1; }

  /* Logo rendering inside tiles */
  .logo-render { display: flex; align-items: center; gap: 13px; }
  .logo-render .mark {
    width: 50px; height: 42px;     /* 573:487 aspect ratio */
    display: block;
    object-fit: contain;
  }
  .logo-render .mark.big { width: 70px; height: 60px; }
  .logo-render .wm {
    font-family: "Source Sans 3", var(--font-sans);
    font-weight: 600; font-size: 34px;
    letter-spacing: -0.025em; line-height: 1;
    transform: translateY(1px);
  }
  .logo-render .wm.green { color: #2F8A3A; }
  .logo-render .wm.greenlight { color: #55C25E; }
  .logo-render .wm.white { color: #ffffff; }
  .logo-render .wm.black { color: #111111; }

  .tile .body {
    padding: 13px 15px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .tile .asset-label { font-weight: 600; font-size: 13.5px; letter-spacing: -0.01em; color: var(--text); white-space: nowrap; }
  .tile .fmt {
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
    color: var(--muted);
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    padding: 4px 7px;
    flex-shrink: 0;
    transition: color 0.15s, border-color 0.15s;
  }
  .tile:hover .fmt { color: var(--text); }
  /* hover download affordance, anchored in the preview */
  .tile .dl-ico {
    position: absolute; top: 12px; right: 12px;
    width: 30px; height: 30px; border-radius: 8px;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(0,0,0,0.08);
    color: #2f3a2c;
    opacity: 0; transform: translateY(-3px);
    transition: opacity 0.16s ease, transform 0.16s ease;
  }
  .tile .dl-ico i { font-size: 15px; }
  .tile .preview.on-dark .dl-ico { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.22); color: #fff; }
  .tile:hover .dl-ico { opacity: 1; transform: none; }

  /* ===== Guidelines footer ===== */
  .pr-foot {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px 40px;
    align-items: center;
  }
  .pr-foot-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .pr-foot-left .swatches { flex-shrink: 0; }
  .pr-foot-left .spec-note { flex: 0 1 auto; min-width: 0; max-width: 48ch; }
  .pr-foot .note { color: var(--muted); font-size: 13px; line-height: 1.55; text-align: right; max-width: 30ch; justify-self: end; }
  .pr-foot .swatches { display: flex; gap: 10px; flex-wrap: wrap; }
  .chip {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.02em; color: var(--text);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    padding: 7px 13px;
    background: var(--surface);
    cursor: pointer;
    transition: border-color 0.15s;
  }
  .chip:hover { border-color: var(--primary-strong); }
  [data-theme="dark"] .chip:hover { border-color: var(--primary); }
  .chip .sw { width: 15px; height: 15px; border-radius: 4px; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.10); }
  .chip i { font-size: 13px; color: var(--muted); }
  .chip.copied i { color: var(--primary-strong); }
  [data-theme="dark"] .chip.copied i { color: var(--primary); }
  .pr-foot .spec-note { color: var(--muted); font-size: 13.5px; line-height: 1.55; max-width: none; }
  .pr-foot .spec-note strong { color: var(--text-soft); font-weight: 600; }
  .full-kit {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 600; letter-spacing: -0.005em;
    color: var(--primary-fg);
    background: var(--primary-strong);
    border-radius: 10px;
    padding: 12px 20px;
    white-space: nowrap;
    transition: background 0.15s;
  }
  .full-kit:hover { background: var(--primary-strong-hover); }
  .full-kit i { font-size: 15px; }

  @media (max-width: 1040px) {
    .pr-grid { gap: 18px; }
  }
  @media (max-width: 900px) {
    .pr-top { grid-template-columns: 1fr; gap: 32px; }
    .desk { align-self: start; margin-bottom: 0; }
    .pr-section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
    .pr-section-head .note { text-align: left; }
    .pr-foot { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .pr-grid { grid-template-columns: 1fr; }
  }
