/* ============================================================
   Profile DESKTOP — refinement only (≥821px)
   Same structure. Better proportions, type, spacing, polish.
   ============================================================ */

@media (min-width: 821px) {
  .profile-m { display: none !important; }
  .profile-hero__img--m-only { display: none; }

  /* —— Hero: same height band, refined veil & card —— */
  .profile-hero {
    min-height: 48vh;
    padding-bottom: 36px;
    margin-bottom: 12px;
  }
  .profile-hero__veil {
    background: linear-gradient(
      180deg,
      rgba(9, 9, 11, 0.2) 0%,
      rgba(9, 9, 11, 0.35) 45%,
      rgba(9, 9, 11, 0.88) 100%
    );
  }
  .profile-identity--desk {
    display: flex;
    gap: 28px;
    align-items: flex-end;
    max-width: 720px;
    padding: 22px 24px 22px 22px;
    background: rgba(14, 14, 16, 0.42);
    border: 1px solid rgba(201, 169, 98, 0.22);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }
  .profile-av {
    width: 132px;
    height: 132px;
    border-color: rgba(201, 169, 98, 0.4);
    transition: border-color 0.3s ease, transform 0.35s ease;
  }
  .profile-av:hover {
    border-color: rgba(201, 169, 98, 0.7);
    transform: translateY(-1px);
  }
  .profile-id-card { flex: 1; min-width: 0; }
  .profile-badges {
    gap: 8px;
    margin-bottom: 12px;
  }
  .profile-badges .badge {
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 5px 10px;
  }
  .profile-name {
    margin: 0;
    font-size: clamp(2.15rem, 2.8vw, 2.75rem);
    line-height: 1.12;
    gap: 0.4em 0.65em;
  }
  .verified-mark {
    font-size: 0.38em;
    letter-spacing: 0.08em;
  }
  .profile-loc {
    margin: 10px 0 0;
    font-size: 12px;
    letter-spacing: 0.14em;
  }
  .profile-tagline {
    margin: 14px 0 0;
    font-size: 1.3rem;
    line-height: 1.45;
    max-width: 34ch;
    color: rgba(244, 239, 230, 0.88);
  }
  .profile-id-card__cta {
    margin-top: 18px;
  }
  .profile-id-card__btn {
    min-height: 46px;
    min-width: 200px;
    padding-left: 22px;
    padding-right: 22px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  }
  .profile-id-card__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  }
  .profile-meta {
    margin-top: 14px;
    gap: 16px;
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  /* —— Body: +15–20% whitespace —— */
  .profile-body {
    padding-top: 18px;
  }
  .profile-body.cols {
    gap: 30px;
    padding-bottom: 80px;
  }
  .profile-main .card,
  .profile-aside .card {
    padding: 26px 28px;
  }
  .profile-main .card + .card {
    margin-top: 20px;
  }
  .card-h {
    margin-bottom: 16px;
    letter-spacing: 0.14em;
  }
  .prose {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(244, 239, 230, 0.88);
  }

  /* —— Stat pills: lighter, same boxes —— */
  .stats-row {
    gap: 10px;
    margin-bottom: 22px;
  }
  .stat-pill {
    padding: 12px 16px;
    min-width: 96px;
    background: rgba(22, 22, 26, 0.55);
    border-color: rgba(244, 239, 230, 0.1);
    transition: border-color 0.25s ease, background 0.25s ease;
  }
  .stat-pill:hover {
    border-color: rgba(201, 169, 98, 0.28);
    background: rgba(22, 22, 26, 0.75);
  }
  .stat-pill span {
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
  }
  .stat-pill b {
    font-size: 15px;
    font-weight: 500;
  }

  /* —— Services list polish —— */
  .profile-svc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }
  .profile-svc-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(244, 239, 230, 0.9);
    border-bottom: 1px solid rgba(244, 239, 230, 0.06);
  }
  .profile-svc-list__ico {
    flex: none;
    width: 7px;
    height: 7px;
    margin-top: 0.45em;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
  }

  /* —— Gallery: same place, larger tiles —— */
  .profile-sec--gallery .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .profile-sec--gallery .gallery__btn {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(244, 239, 230, 0.08);
    transition: border-color 0.3s ease;
  }
  .profile-sec--gallery .gallery__btn:hover {
    border-color: rgba(201, 169, 98, 0.35);
  }
  .profile-sec--gallery .gallery__btn img {
    aspect-ratio: 4 / 5;
    transition: transform 0.55s ease;
  }
  .profile-sec--gallery .gallery__btn:hover img {
    transform: scale(1.04);
  }

  /* —— Sidebar: sticky, lighter borders —— */
  .profile-aside .side {
    position: sticky;
    top: 92px;
    padding: 26px 24px;
    border-color: rgba(201, 169, 98, 0.2);
    background: rgba(22, 22, 26, 0.72);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  }
  .profile-aside__lead {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.55;
  }
  .profile-aside__contact-h {
    margin-top: 22px;
  }
  .profile-aside .kv {
    padding: 12px 0;
    border-bottom-color: rgba(244, 239, 230, 0.08);
    font-size: 14px;
  }
  .profile-aside .kv--primary {
    padding-bottom: 16px;
  }
  .profile-aside .kv--primary span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .profile-aside .kv--primary b {
    font-family: var(--display);
    font-size: 1.25rem;
    color: var(--brand);
    font-weight: 500;
  }

  /* —— Soft interactions —— */
  .profile-page .btn {
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  }
  .profile-page .btn:hover {
    transform: translateY(-1px);
  }
  .profile-page .card {
    transition: border-color 0.3s ease;
  }

  @media (prefers-reduced-motion: reduce) {
    .profile-av,
    .profile-id-card__btn,
    .profile-sec--gallery .gallery__btn img,
    .profile-page .btn {
      transition: none;
    }
  }
}
