*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #F7F6F1;
      --ink: #0D0D0D;
      --ink2: #444444;
      --ink3: #8A8A85;
      --rule: #E2E1DB;
      --rule2: #C9C8C1;
      --red: #C0301C;
      --paper: #EFEDE6;
      --f: 'Open Sans', system-ui, -apple-system, sans-serif;
      --ease: cubic-bezier(.16,.84,.32,1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--f);
      font-weight: 400;
      background: var(--bg);
      color: var(--ink);
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    ::selection { background: var(--red); color: #fff; }

    /* ── NAV ── */
    .nav {
      position: sticky;
      top: 0;
      background: rgba(247,246,241,0.85);
      backdrop-filter: blur(14px) saturate(1.4);
      -webkit-backdrop-filter: blur(14px) saturate(1.4);
      border-bottom: 1.5px solid var(--ink);
      z-index: 100;
      padding: 0 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
    }
    .nav-name {
      font-size: 15px;
      font-weight: 800;
      color: var(--ink);
      cursor: pointer;
      letter-spacing: -0.02em;
      text-decoration: none;
    }
    .nav-links { display: flex; gap: 4px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .nav-links::-webkit-scrollbar { display: none; }
    .nl {
      position: relative;
      font-size: 13px;
      color: var(--ink2);
      padding: 7px 12px;
      border-radius: 0;
      cursor: pointer;
      background: none;
      border: none;
      font-family: var(--f);
      transition: color 0.2s var(--ease);
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    .nl::after {
      content: '';
      position: absolute;
      left: 12px; right: 12px; bottom: 2px;
      height: 2px;
      background: var(--ink);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.28s var(--ease);
    }
    .nl:hover { color: var(--ink); }
    .nl:hover::after { transform: scaleX(1); }
    .nl.active { color: var(--ink); font-weight: 700; }
    .nl.active::after { transform: scaleX(1); background: var(--red); }
    .nav-avail {
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .nav-avail::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 0 0 rgba(192,48,28,0.5);
      animation: pulse 2.4s infinite;
    }
    @keyframes pulse {
      0%   { box-shadow: 0 0 0 0 rgba(192,48,28,0.5); opacity: 1; }
      70%  { box-shadow: 0 0 0 7px rgba(192,48,28,0); opacity: 1; }
      100% { box-shadow: 0 0 0 0 rgba(192,48,28,0); opacity: 1; }
    }

    /* ── PAGES ── */
    .page { display: block; animation: fi 0.4s var(--ease) both; }
    @keyframes fi { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

    /* ── SCROLL / LOAD REVEAL ── */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
    .reveal.in { opacity: 1; transform: none; }

    /* ── LAYOUT ── */
    .inner {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .divider { border: none; border-top: 1.5px solid var(--rule2); }

    /* ── HERO ── */
    .hero { padding: 64px 0 52px; }
    .hero-grid {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 26px;
    }
    .avatar {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      background: #E2DDD8;
      overflow: hidden;
      border: 2px solid var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.4s var(--ease);
    }
    .avatar:hover { transform: scale(1.04) rotate(-2deg); }
    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .av-txt {
      font-size: 9px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink3);
      text-align: center;
      line-height: 1.6;
    }
    .hero-title {
      font-size: 44px;
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.035em;
      margin-bottom: 18px;
      color: var(--ink);
    }
    .hero-desc {
      font-size: 16px;
      line-height: 1.65;
      color: var(--ink2);
      margin-bottom: 16px;
      font-weight: 400;
      max-width: 580px;
    }
    .la {
      font-size: 15px;
      font-weight: 700;
      color: var(--ink);
      display: inline-flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      text-decoration: none;
      padding-bottom: 3px;
      border-bottom: 2.5px solid var(--ink);
      transition: color 0.2s var(--ease), border-color 0.2s var(--ease), gap 0.2s var(--ease);
      letter-spacing: -0.01em;
    }
    .la:hover { color: var(--red); border-color: var(--red); gap: 10px; }

    /* ── SECTIONS ── */
    .section { padding: 56px 0; }
    .sec-title {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 22px;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .sec-title::before {
      content: '';
      width: 22px; height: 4px;
      background: var(--red);
      border-radius: 2px;
      flex-shrink: 0;
    }
    .body-text {
      font-size: 15px;
      line-height: 1.7;
      color: var(--ink2);
      font-weight: 400;
      margin-bottom: 12px;
    }
    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

    /* ── EXPERIENCE ITEMS ── */
    .exp-item { margin-bottom: 22px; padding-left: 16px; border-left: 2.5px solid var(--rule2); transition: border-color 0.25s var(--ease); }
    .exp-item:hover { border-color: var(--red); }
    .exp-item:last-child { margin-bottom: 0; }
    .exp-role {
      font-size: 15px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 3px;
      letter-spacing: -0.015em;
    }
    .exp-co {
      font-size: 13px;
      color: var(--ink2);
      font-weight: 400;
      margin-bottom: 4px;
    }
    .exp-dates {
      font-size: 12px;
      color: var(--ink3);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .tdot {
      width: 3px; height: 3px;
      border-radius: 50%;
      background: var(--ink3);
      display: inline-block;
      flex-shrink: 0;
    }

    /* ── WORK GRID ── */
    .wgrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px;
      margin-top: 24px;
    }
    .wcard {
      aspect-ratio: 4/3;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border-radius: 4px;
      border: 1.5px solid var(--ink);
      transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    }
    .wcard:hover { transform: translateY(-4px); box-shadow: 6px 8px 0 var(--ink); }
    .wcard.wide { grid-column: 1 / 3; aspect-ratio: 21/8; }
    .wcard img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s var(--ease);
    }
    .wcard:hover img { transform: scale(1.06); }
    .wph {
      width: 100%; height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.2s;
    }
    .wcard:hover .wph { opacity: 0.75; }
    .wphl {
      font-size: 10px;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--ink3);
      text-align: center;
      line-height: 1.8;
    }
    .wov {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 18px 18px 16px;
      background: linear-gradient(to top, rgba(13,13,13,0.78) 0%, transparent 100%);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
    }
    .wcard:hover .wov { opacity: 1; transform: translateY(0); }
    .wot {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 3px;
      letter-spacing: -0.015em;
    }
    .wos {
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      font-weight: 600;
    }

    /* ── CREDITS ── */
    .cgroup { margin-bottom: 36px; }
    .cgroup-lbl {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink);
      font-weight: 800;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .cgroup-lbl::after { content: ''; flex: 1; height: 1.5px; background: var(--rule2); }
    .ci {
      display: flex;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1.5px solid var(--rule);
      align-items: baseline;
      transition: padding-left 0.22s var(--ease);
    }
    .ci:hover { padding-left: 8px; }
    .ci:last-child { border-bottom: none; }
    .ciy { font-size: 12px; color: var(--ink3); font-weight: 700; min-width: 36px; }
    .cim { flex: 1; }
    .cit {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.015em;
      margin-bottom: 2px;
    }
    .cis { font-size: 12px; color: var(--ink3); font-weight: 400; }
    .cir {
      font-size: 11px;
      color: var(--ink2);
      font-weight: 600;
      text-align: right;
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .badge {
      display: inline-block;
      font-size: 8px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 3px 6px;
      background: var(--red);
      color: #fff;
      border-radius: 3px;
      margin-left: 8px;
      vertical-align: middle;
      font-weight: 700;
    }

    /* ── CONTACT ── */
    .ct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
    .flbl {
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 7px;
      display: block;
      font-weight: 700;
    }
    .frow { margin-bottom: 14px; }
    .finp, .fsel, .fta {
      width: 100%;
      background: #fff;
      border: 1.5px solid var(--rule2);
      padding: 12px 13px;
      font-family: var(--f);
      font-size: 14px;
      color: var(--ink);
      outline: none;
      transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
      border-radius: 4px;
      font-weight: 400;
      display: block;
      -webkit-appearance: none;
    }
    .finp:focus, .fsel:focus, .fta:focus { border-color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }
    .fsel { cursor: pointer; }
    .fta { resize: vertical; min-height: 96px; }
    .fbtn {
      padding: 13px 24px;
      background: var(--ink);
      color: var(--bg);
      font-family: var(--f);
      font-size: 14px;
      border: 1.5px solid var(--ink);
      cursor: pointer;
      border-radius: 4px;
      transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
      font-weight: 700;
      margin-top: 4px;
      letter-spacing: -0.01em;
    }
    .fbtn:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); box-shadow: 4px 4px 0 var(--ink); }
    .fbtn:active { transform: translateY(0); box-shadow: none; }
    .fbtn:disabled { opacity: 0.55; cursor: default; transform: none; box-shadow: none; }
    .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
    .form-status { font-size: 13px; font-weight: 600; line-height: 1.5; margin-top: 14px; min-height: 1px; }
    .form-status.ok { color: #1F7A33; }
    .form-status.err { color: var(--red); }
    .dline {
      display: flex;
      gap: 12px;
      padding: 13px 0;
      border-bottom: 1.5px solid var(--rule);
      font-size: 14px;
      align-items: baseline;
    }
    .dline:last-child { border-bottom: none; }
    .dlbl {
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink3);
      min-width: 76px;
      font-weight: 700;
      padding-top: 1px;
    }
    .dval { color: var(--ink2); font-weight: 500; }
    .dval a { color: var(--ink); text-decoration: none; border-bottom: 1.5px solid var(--rule2); transition: border-color 0.2s; }
    .dval a:hover { border-color: var(--red); }
    .dval.r { color: var(--red); font-weight: 700; }
    .wi-item { padding: 14px 0; border-bottom: 1.5px solid var(--rule); }
    .wi-item:last-child { border-bottom: none; }
    .wi-name { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 3px; letter-spacing: -0.015em; }
    .wi-desc { font-size: 12px; color: var(--ink3); font-weight: 400; line-height: 1.6; }

    /* ── FOOTER ── */
    .footer { padding: 28px 0 44px; text-align: center; }
    .footer-txt { font-size: 12px; color: var(--ink3); font-weight: 600; letter-spacing: 0.02em; }

    /* ── SERVICES PAGE ── */
    #pg-services .svc-eyebrow {
      font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--red); font-weight: 800; margin-bottom: 18px;
      display: flex; align-items: center; gap: 10px;
    }
    #pg-services .svc-eyebrow::before { content: ''; width: 24px; height: 3px; background: var(--red); border-radius: 2px; }
    #pg-services .svc-hero-title {
      font-size: 48px; font-weight: 800; line-height: 1.02;
      letter-spacing: -0.04em; color: var(--ink); margin-bottom: 20px;
    }
    #pg-services .svc-lead {
      font-size: 18px; line-height: 1.6; color: var(--ink2);
      font-weight: 400; max-width: 560px; margin-bottom: 32px;
    }
    #pg-services .hero-stats {
      display: grid; grid-template-columns: repeat(3, 1fr);
      border: 1.5px solid var(--ink); border-radius: 6px; overflow: hidden;
    }
    #pg-services .stat-block { padding: 22px 22px; border-right: 1.5px solid var(--ink); transition: background 0.2s var(--ease); }
    #pg-services .stat-block:hover { background: var(--paper); }
    #pg-services .stat-block:last-child { border-right: none; }
    #pg-services .stat-n { font-size: 34px; font-weight: 800; color: var(--ink); letter-spacing: -0.04em; line-height: 1; margin-bottom: 5px; }
    #pg-services .stat-l { font-size: 11px; color: var(--ink3); font-weight: 600; line-height: 1.4; }
    #pg-services .s-sec-title {
      font-size: 26px; font-weight: 800; letter-spacing: -0.03em;
      color: var(--ink); margin-bottom: 16px; line-height: 1.12;
    }
    #pg-services .s-sub-title {
      font-size: 14px; font-weight: 800; letter-spacing: -0.01em;
      color: var(--ink); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em;
    }
    #pg-services .s-body {
      font-size: 15px; line-height: 1.7; color: var(--ink2);
      font-weight: 400; margin-bottom: 14px;
    }
    #pg-services .s-body strong { color: var(--ink); font-weight: 700; }
    #pg-services .s-body:last-child { margin-bottom: 0; }
    .service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 24px; }
    .service-card { background: var(--paper); padding: 24px; border-radius: 5px; border: 1.5px solid var(--ink); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
    .service-card:hover { transform: translateY(-4px); box-shadow: 5px 6px 0 var(--ink); }
    .svc-icon { width: 28px; height: 4px; background: var(--red); border-radius: 2px; margin-bottom: 14px; }
    .svc-name { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.015em; }
    .svc-desc { font-size: 12px; line-height: 1.6; color: var(--ink2); font-weight: 400; }
    .process-list { margin-top: 24px; }
    .process-item { display: grid; grid-template-columns: 76px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1.5px solid var(--rule); align-items: start; }
    .process-item:last-child { border-bottom: none; }
    .process-n { font-size: 10px; font-weight: 800; color: #fff; background: var(--red); padding: 4px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.05em; display: inline-block; justify-self: start; }
    .process-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.015em; }
    .process-desc { font-size: 12px; line-height: 1.6; color: var(--ink2); font-weight: 400; }
    .credits-strip { margin-top: 20px; }
    .credit-line { display: flex; align-items: baseline; gap: 12px; padding: 12px 0; border-bottom: 1.5px solid var(--rule); }
    .credit-line:last-child { border-bottom: none; }
    .cl-title { font-size: 15px; font-weight: 700; color: var(--ink); flex: 1; letter-spacing: -0.015em; }
    .cl-sub { font-size: 11px; color: var(--ink3); font-weight: 400; }
    .cl-yr { font-size: 11px; color: var(--ink3); font-weight: 700; min-width: 34px; text-align: right; }
    .faq-list { margin-top: 18px; }
    .faq-item { padding: 20px 0; border-bottom: 1.5px solid var(--rule); }
    .faq-item:first-child { border-top: 1.5px solid var(--rule); }
    .faq-q { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 0; letter-spacing: -0.015em; cursor: pointer; display: flex; justify-content: space-between; align-items: start; gap: 16px; transition: color 0.2s var(--ease); }
    .faq-q:hover { color: var(--red); }
    .faq-q::after { content: '+'; color: var(--red); font-weight: 700; font-size: 22px; flex-shrink: 0; transition: transform 0.3s var(--ease); line-height: 1; }
    .faq-item.open .faq-q::after { transform: rotate(135deg); }
    .faq-a { font-size: 14px; line-height: 1.7; color: var(--ink2); font-weight: 400; display: none; margin-top: 12px; }
    .faq-item.open .faq-a { display: block; animation: fi 0.3s var(--ease) both; }
    .svc-highlight { background: var(--paper); border-radius: 6px; padding: 24px; margin: 20px 0; border: 1.5px solid var(--ink); }
    .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
    .tag { font-size: 11px; color: var(--ink); padding: 6px 13px; border: 1.5px solid var(--ink); border-radius: 20px; font-weight: 600; background: transparent; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
    .tag:hover { background: var(--ink); color: var(--bg); }
    .cta-block { background: var(--ink); border-radius: 8px; padding: 40px 36px; margin: 48px 0; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
    .cta-title { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 6px; }
    .cta-sub { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 400; }
    .cta-btn { padding: 13px 24px; background: var(--bg); color: var(--ink); font-family: var(--f); font-size: 14px; border: none; cursor: pointer; border-radius: 4px; font-weight: 800; letter-spacing: -0.01em; white-space: nowrap; transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease); }
    .cta-btn:hover { background: var(--red); color: #fff; transform: translateY(-2px); box-shadow: 4px 4px 0 rgba(255,255,255,0.25); }
    .cta-btn:active { transform: translateY(0); }
    .svc-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }

    /* ── BLOG ── */
    .blog-list { display: flex; flex-direction: column; margin-top: 12px; }
    .blog-card { padding: 28px 0; border-bottom: 1.5px solid var(--rule); cursor: pointer; transition: padding-left 0.25s var(--ease); }
    .blog-card:first-child { border-top: 1.5px solid var(--rule); }
    .blog-card:hover { padding-left: 8px; }
    .blog-cat { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }
    .blog-card-title { font-size: 24px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); margin: 8px 0; line-height: 1.12; }
    .blog-meta { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink3); margin-bottom: 10px; }
    .blog-excerpt { font-size: 15px; line-height: 1.65; color: var(--ink2); font-weight: 400; max-width: 600px; }
    .blog-more { display: inline-flex; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--ink); align-items: center; gap: 5px; letter-spacing: -0.01em; transition: gap 0.2s var(--ease), color 0.2s var(--ease); }
    .blog-card:hover .blog-more { color: var(--red); gap: 9px; }

    /* ── ARTICLE ── */
    .article { max-width: 680px; }
    .back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink2); cursor: pointer; margin-bottom: 30px; border: none; background: none; font-family: var(--f); transition: gap 0.2s var(--ease), color 0.2s var(--ease); letter-spacing: -0.01em; padding: 0; }
    .back-link:hover { color: var(--red); gap: 10px; }
    .article-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
    .article-title { font-size: 40px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.06; color: var(--ink); margin-bottom: 14px; }
    .article-meta { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink3); margin-bottom: 30px; padding-bottom: 24px; border-bottom: 1.5px solid var(--rule2); }
    .article-body p { font-size: 16px; line-height: 1.72; color: var(--ink2); font-weight: 400; margin-bottom: 18px; }
    .article-body h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); margin: 30px 0 10px; }
    .article-body strong { color: var(--ink); font-weight: 700; }
    .article-body a { color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--rule2); transition: border-color 0.2s var(--ease); font-weight: 600; }
    .article-body a:hover { border-color: var(--red); }

    @media (max-width: 780px) {
      .nav-avail { display: none; }
    }
    /* ── MOBILE ── */
    @media (max-width: 640px) {
      .nav { padding: 0 18px; height: 56px; }
      .nav-avail { display: none; }
      .inner { padding: 0 18px; }
      .hero { padding: 40px 0 36px; }
      .hero-title { font-size: 32px; }
      .hero-desc { font-size: 15px; }
      .avatar { width: 80px; height: 80px; }
      .section { padding: 40px 0; }
      .two-col { grid-template-columns: 1fr; gap: 36px; }
      .wgrid { grid-template-columns: 1fr; }
      .wcard.wide { grid-column: 1; aspect-ratio: 4/3; }
      .ct-grid { grid-template-columns: 1fr; gap: 36px; }
      .svc-two-col { grid-template-columns: 1fr; gap: 32px; }
      #pg-services .svc-hero-title { font-size: 34px; }
      #pg-services .svc-lead { font-size: 16px; }
      #pg-services .stat-n { font-size: 26px; }
      .cta-block { grid-template-columns: 1fr; padding: 28px 24px; }
      .service-grid { grid-template-columns: 1fr; }
      .article-title { font-size: 28px; }
      .blog-card-title { font-size: 20px; }
      .article-body p { font-size: 15px; }
    }

    /* ── REDUCED MOTION ── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
      .reveal { opacity: 1 !important; transform: none !important; }
    }
  
    /* ── MULTI-PAGE ADDITIONS ── */
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
    a.nl, a.cta-btn, a.back-link, a.blog-more { text-decoration: none; display: inline-flex; }
    a.blog-card { display: block; text-decoration: none; color: inherit; }
    .footer-links { margin-top: 12px; display: flex; gap: 6px 16px; justify-content: center; flex-wrap: wrap; }
    .footer-links a { font-size: 12px; color: var(--ink2); text-decoration: none; font-weight: 600; border-bottom: 1.5px solid var(--rule2); transition: color 0.2s var(--ease), border-color 0.2s var(--ease); }
    .footer-links a:hover { color: var(--red); border-color: var(--red); }
