/* ============================================================
   完美体育 · 共享样式表 /assets/site.css
   夜场竞技 + 黄土厚土 · 模块化 Bento 外壳
   ============================================================ */

/* ---------- 1. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote,
ul, ol, dl, dd, dt { margin: 0; }

ul, ol { padding: 0; list-style: none; }

img, svg, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

table { border-collapse: collapse; width: 100%; }

/* ---------- 2. 变量 ---------- */
:root {
  --ink-900: #1C1712;
  --ink-800: #2B2320;
  --ochre: #C86B3C;
  --lava: #E08A4B;
  --neon: #39FF88;
  --zap: #2FD4FF;
  --cream: #F4EDE4;
  --amber: #FFD166;
  --muted: #9A8F86;

  --line-soft: rgba(244, 237, 228, 0.09);
  --line-mid: rgba(244, 237, 228, 0.18);
  --ochre-line: rgba(200, 107, 60, 0.45);

  --font-display: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", Georgia, serif;
  --font-body: "Inter", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --shell-max: 1180px;
  --radius: 3px;
  --shadow-deep: 0 26px 60px -38px rgba(0, 0, 0, 0.95);
}

/* ---------- 3. 中文排版基座 ---------- */
body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: var(--cream);
  background-color: var(--ink-900);
  background-image:
    radial-gradient(90% 60% at 12% 0%, rgba(200, 107, 60, 0.16), transparent 62%),
    radial-gradient(70% 50% at 100% 8%, rgba(47, 212, 255, 0.09), transparent 60%);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--cream);
}

strong { font-weight: 700; color: var(--cream); }

code, kbd, samp, .pmt-num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

::selection {
  background: var(--neon);
  color: var(--ink-900);
}

:focus-visible {
  outline: 2px solid var(--zap);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- 4. 工具类 ---------- */
.pmt-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.pmt-shell {
  width: min(calc(100% - 1.75rem), var(--shell-max));
  margin-inline: auto;
}

.pmt-rule {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, var(--ochre) 0%, rgba(200, 107, 60, 0.16) 58%, transparent 100%);
}

/* ---------- 5. 跳至主内容 ---------- */
.pmt-skip {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 200;
  display: inline-block;
  padding: 0.7rem 1.15rem;
  background: var(--neon);
  color: var(--ink-900);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: top 0.2s ease;
}

.pmt-skip:focus {
  top: 1rem;
}

/* ---------- 6. 头部 ---------- */
.pmt-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background-image: linear-gradient(
    180deg,
    rgba(28, 23, 18, 0.88) 0%,
    rgba(28, 23, 18, 0.58) 58%,
    rgba(28, 23, 18, 0) 100%
  );
  border-bottom: 1px solid var(--line-soft);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  backdrop-filter: blur(10px) saturate(130%);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pmt-header[data-scrolled] {
  background-color: var(--ink-900);
  background-image: none;
  border-bottom-color: var(--ochre-line);
  box-shadow: var(--shadow-deep);
}

.pmt-header__inner {
  position: relative;
}

.pmt-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem 1.25rem;
  padding: 0.8rem 0 0.65rem;
}

/* 品牌 */
.pmt-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  min-width: 0;
}

.pmt-brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--ochre), var(--lava));
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
}

.pmt-brand__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 0 0 rgba(57, 255, 136, 0.55);
  animation: pmt-pulse 2.6s ease-out infinite;
}

@keyframes pmt-pulse {
  0% { box-shadow: 0 0 0 0 rgba(57, 255, 136, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(57, 255, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(57, 255, 136, 0); }
}

.pmt-brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pmt-brand__name {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.pmt-brand__meta {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: rgba(244, 237, 228, 0.52);
}

/* 头部右侧动作区 */
.pmt-topline__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

/* 胶囊 */
.pmt-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.46rem 0.8rem;
  border: 1px solid var(--line-mid);
  border-radius: 999px;
  background: rgba(244, 237, 228, 0.05);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  color: rgba(244, 237, 228, 0.86);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.pmt-chip:hover {
  border-color: rgba(57, 255, 136, 0.6);
  background: rgba(57, 255, 136, 0.09);
  color: var(--cream);
}

.pmt-chip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.pmt-chip--zap .pmt-chip__dot {
  background: var(--neon);
  box-shadow: 0 0 0 3px rgba(57, 255, 136, 0.16);
}

/* 按钮 */
.pmt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.66rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

.pmt-btn--lava {
  background-image: linear-gradient(135deg, var(--lava), var(--ochre));
  color: #1C1712;
  box-shadow: 0 12px 26px -18px rgba(224, 138, 75, 0.95);
}

.pmt-btn--lava:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -18px rgba(224, 138, 75, 1);
}

.pmt-btn--ghost {
  background: transparent;
  border-color: rgba(244, 237, 228, 0.28);
  color: var(--cream);
}

.pmt-btn--ghost:hover {
  border-color: var(--zap);
  color: var(--zap);
  transform: translateY(-2px);
}

.pmt-btn--neon {
  background: var(--neon);
  color: var(--ink-900);
}

.pmt-btn--neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -20px rgba(57, 255, 136, 0.9);
}

/* 移动导航按钮 */
.pmt-navtoggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--line-mid);
  border-radius: var(--radius);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.pmt-navtoggle:hover {
  border-color: var(--zap);
  color: var(--zap);
}

.pmt-navtoggle__bars {
  position: relative;
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.pmt-navtoggle__bars::before,
.pmt-navtoggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: currentColor;
  transition: transform 0.24s ease;
}

.pmt-navtoggle__bars::before { top: -5px; }
.pmt-navtoggle__bars::after { top: 5px; }

.pmt-navtoggle[aria-expanded="true"] .pmt-navtoggle__bars { background: transparent; }
.pmt-navtoggle[aria-expanded="true"] .pmt-navtoggle__bars::before { transform: translateY(5px) rotate(45deg); }
.pmt-navtoggle[aria-expanded="true"] .pmt-navtoggle__bars::after { transform: translateY(-5px) rotate(-45deg); }

.pmt-navtoggle__label { line-height: 1; }

/* 主导航 */
.pmt-nav {
  border-top: 1px solid var(--line-soft);
  background-image: linear-gradient(90deg, rgba(43, 35, 32, 0.72), rgba(43, 35, 32, 0.1) 72%, transparent 100%);
}

.pmt-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 1.55rem;
}

.pmt-nav__link {
  position: relative;
  display: inline-block;
  padding: 0.9rem 0.1rem calc(0.9rem + 2px);
  font-size: 0.93rem;
  letter-spacing: 0.05em;
  color: rgba(244, 237, 228, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.pmt-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.6rem;
  height: 2px;
  background: var(--zap);
  transition: right 0.26s ease;
}

.pmt-nav__link:hover { color: var(--cream); }
.pmt-nav__link:hover::after { right: 0; }

.pmt-nav__link[aria-current="page"] {
  color: var(--cream);
  font-weight: 600;
}

.pmt-nav__link[aria-current="page"]::after {
  right: 0;
  background: var(--neon);
}

/* 视觉锚点：新版直达 */
.pmt-nav__link--anchor {
  margin-block: 0.32rem;
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(255, 209, 102, 0.45);
  border-radius: var(--radius);
  background-image: linear-gradient(135deg, rgba(255, 209, 102, 0.16), rgba(255, 209, 102, 0));
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.16em;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.pmt-nav__link--anchor::after { display: none; }

.pmt-nav__link--anchor:hover,
.pmt-nav__link--anchor[aria-current="page"] {
  background-image: none;
  background-color: var(--amber);
  border-color: var(--amber);
  color: var(--ink-900);
}

/* 阅读进度 */
.pmt-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.pmt-progress__bar {
  display: block;
  width: 0;
  height: 100%;
  background-image: linear-gradient(90deg, var(--lava), var(--neon) 55%, var(--zap));
  transition: width 0.12s linear;
}

/* ---------- 7. 页脚 ---------- */
.pmt-footer {
  position: relative;
  margin-top: clamp(3.5rem, 8vw, 6rem);
  color: rgba(244, 237, 228, 0.76);
  font-size: 0.92rem;
  background-color: var(--ink-900);
  background-image: radial-gradient(120% 130% at 100% 0%, rgba(200, 107, 60, 0.18), transparent 58%);
  background-repeat: no-repeat;
  border-top: 1px solid var(--ochre-line);
}

.pmt-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background-image: linear-gradient(90deg, var(--ochre) 0%, var(--lava) 26%, var(--amber) 42%, rgba(255, 209, 102, 0) 72%);
}

.pmt-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.2rem 1.8rem;
  padding: 3.6rem 0 2.4rem;
}

.pmt-footer__col { min-width: 0; }

.pmt-footer__brandname {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--cream);
}

.pmt-footer__lead {
  margin-top: 0.55rem;
  color: var(--cream);
  font-size: 0.98rem;
}

.pmt-footer__note {
  margin-top: 0.5rem;
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.7;
}

.pmt-footer__brand .pmt-btn {
  margin-top: 1.1rem;
}

.pmt-footer__title {
  margin-bottom: 0.95rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.pmt-footer__list li + li { margin-top: 0.6rem; }

.pmt-footer__list a {
  color: rgba(244, 237, 228, 0.74);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pmt-footer__list a:hover {
  color: var(--neon);
  border-bottom-color: rgba(57, 255, 136, 0.5);
}

.pmt-footer__contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.15rem 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.pmt-footer__datum { min-width: 0; }

.pmt-footer__datum dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.pmt-footer__datum dd {
  margin: 0.3rem 0 0;
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.6;
  word-break: break-word;
}

.pmt-footer__datum--mono dd {
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.pmt-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.6rem;
  padding: 1.4rem 0 2.6rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.pmt-footer__legal p { min-width: 0; }

/* ---------- 8. 通用内容组件 ---------- */
.pmt-section {
  padding-block: clamp(2.6rem, 6vw, 4.6rem);
}

.pmt-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.9rem 1.5rem;
  margin-bottom: 1.8rem;
}

.pmt-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.14;
  color: var(--cream);
}

.pmt-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.pmt-label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--lava);
}

.pmt-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.36rem 0.72rem;
  border: 1px solid var(--line-mid);
  border-radius: 999px;
  background: rgba(244, 237, 228, 0.04);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: rgba(244, 237, 228, 0.8);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.pmt-tag:hover,
.pmt-tag[aria-pressed="true"] {
  border-color: var(--amber);
  background: rgba(255, 209, 102, 0.1);
  color: var(--amber);
}

.pmt-card {
  position: relative;
  padding: 1.4rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background-color: var(--ink-800);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.pmt-card:hover,
.pmt-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(47, 212, 255, 0.45);
  box-shadow: 0 24px 46px -32px rgba(47, 212, 255, 0.6);
}

.pmt-glass {
  position: relative;
  border: 1px solid rgba(244, 237, 228, 0.14);
  border-radius: var(--radius);
  background: rgba(244, 237, 228, 0.06);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
}

.pmt-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
}

.pmt-band {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.25rem 1.1rem;
  scrollbar-color: var(--ochre) transparent;
  scrollbar-width: thin;
}

.pmt-band > * {
  flex: 0 0 clamp(240px, 78vw, 320px);
  scroll-snap-align: start;
}

.pmt-band:focus-visible {
  outline: 2px solid var(--zap);
  outline-offset: 4px;
}

.pmt-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background-image: linear-gradient(140deg, var(--ink-800), #171310);
}

.pmt-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pmt-media--tall { aspect-ratio: 3 / 4; }
.pmt-media--square { aspect-ratio: 1 / 1; }
.pmt-media--wide { aspect-ratio: 21 / 9; }

.pmt-media__veil {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(28, 23, 18, 0) 42%, rgba(28, 23, 18, 0.8) 100%);
}

.pmt-media__label {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  padding: 0.3rem 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-900);
  background: var(--neon);
}

.pmt-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.pmt-crumbs li {
  display: inline-flex;
  align-items: center;
}

.pmt-crumbs li::after {
  content: "/";
  margin-left: 0.55rem;
  color: rgba(154, 143, 134, 0.6);
}

.pmt-crumbs li:last-child::after { display: none; }

.pmt-crumbs a {
  color: rgba(244, 237, 228, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.pmt-crumbs a:hover { color: var(--zap); }

.pmt-crumbs [aria-current="page"] { color: var(--amber); }

.pmt-prose {
  max-width: 66ch;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(244, 237, 228, 0.84);
}

.pmt-prose > * + * { margin-top: 1.05em; }

.pmt-prose h2,
.pmt-prose h3 {
  font-family: var(--font-display);
  color: var(--cream);
  line-height: 1.28;
}

.pmt-prose h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.pmt-prose h3 { font-size: clamp(1.08rem, 1.8vw, 1.28rem); }

.pmt-prose a {
  color: var(--zap);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pmt-prose li {
  position: relative;
  padding-left: 1.35rem;
}

.pmt-prose li + li { margin-top: 0.5em; }

.pmt-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--neon);
}

/* ---------- 9. 渐显 ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---------- 10. 响应式 ---------- */
@media (min-width: 620px) {
  .pmt-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pmt-footer__brand {
    grid-column: 1 / -1;
  }

  .pmt-footer__contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 700px) {
  .pmt-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pmt-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .pmt-navtoggle { display: none; }
  .pmt-topline { flex-wrap: nowrap; padding: 0.95rem 0 0.75rem; }
  .pmt-brand__mark { width: 42px; height: 42px; }
  .pmt-brand__name { font-size: 1.24rem; }
}

@media (max-width: 899px) {
  .pmt-nav {
    display: none;
    padding-bottom: 0.9rem;
    border-top-color: var(--ochre-line);
    background-color: rgba(28, 23, 18, 0.97);
    background-image: none;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }

  .pmt-nav[data-open] { display: block; }

  .pmt-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .pmt-nav__list > li + li {
    border-top: 1px solid var(--line-soft);
  }

  .pmt-nav__link {
    display: block;
    padding: 1rem 0.25rem;
  }

  .pmt-nav__link::after { display: none; }

  .pmt-nav__link--anchor {
    margin: 0.7rem 0.2rem 0.2rem;
    padding: 0.85rem 0.9rem;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .pmt-brand__mark { width: 34px; height: 34px; }
  .pmt-brand__name { font-size: 1.04rem; }
  .pmt-brand__meta { font-size: 0.6rem; }
  .pmt-chip { padding: 0.4rem 0.62rem; font-size: 0.68rem; letter-spacing: 0.04em; }
  .pmt-btn { padding: 0.58rem 0.9rem; font-size: 0.8rem; }
  .pmt-navtoggle { padding: 0.54rem 0.7rem; }
  .pmt-navtoggle__label { display: none; }
}

@media (min-width: 1000px) {
  .pmt-footer__grid {
    grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr));
  }

  .pmt-footer__brand { grid-column: auto; }
}

@media (min-width: 1080px) {
  .pmt-footer__contact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pmt-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ---------- 11. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .pmt-card:hover,
  .pmt-btn:hover {
    transform: none;
  }
}
