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

    :root {
      --cream: #F0EDE6;
      --ink:   #1a1a1a;
      --terra: #C4502A;
      --muted: #7a7a72;
      --border:#d5d0c9;
    }

    html, body {
      background: var(--cream);
      font-family: 'DM Sans', sans-serif;
      color: var(--ink);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── Custom cursor ── */
    .c-dot {
      position: fixed; width: 10px; height: 10px; border-radius: 50%;
      background: var(--terra); pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%);
      transition: width .18s, height .18s, opacity .2s;
      opacity: 0;
    }
    body.dark .c-dot { background: #F0EDE6; }
    .c-ring {
      position: fixed; width: 38px; height: 38px; border-radius: 50%;
      border: 1.5px solid var(--terra); pointer-events: none; z-index: 9998;
      transform: translate(-50%,-50%);
      transition: width .2s, height .2s, opacity .25s; opacity: 0;
    }

    /* ════════════════════════════
       NAV
    ════════════════════════════ */
    #nav {
      background: var(--cream);
      border-bottom: 1px solid transparent;
      transition: border-color .3s;
      position: sticky; top: 0; z-index: 200;
    }
    #nav.scrolled { border-bottom-color: var(--border); }
    .nav-inner {
      display: flex; justify-content: space-between; align-items: center;
      padding: 24px 64px; max-width: 1200px; margin: 0 auto;
    }

    .logo {
      display: inline-flex; align-items: flex-end; line-height: 1;
      cursor: pointer; background: none; border: none; padding: 0;
    }
    .logo-a, .logo-d {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px; font-weight: 700; color: var(--ink); line-height: 1;
    }
    .logo-gap {
      display: inline-flex; flex-direction: column;
      align-items: center; justify-content: flex-end;
      width: 4px; padding-bottom: 22px;
    }
    .logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); margin: 0 -1px; }

    .nav-right { display: flex; align-items: center; gap: 32px; }

    .nav-link {
      font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400;
      color: var(--muted); letter-spacing: 0.2px; cursor: pointer;
      position: relative; padding: 4px 0;
      transition: color .22s; background: none; border: none;
    }
    .nav-link::after {
      content: ''; position: absolute; left: 0; bottom: 0;
      width: 0; height: 1.5px; background: var(--terra); transition: width .25s;
    }
    .nav-link:hover { color: var(--ink); }
    .nav-link:hover::after { width: 100%; }
    .nav-link.active { color: var(--terra); font-weight: 500; }
    .nav-link.active::after { width: 100%; }

    .nav-hello {
      font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400;
      color: #6b6b6b; cursor: pointer; display: inline-flex; align-items: center;
      gap: 4px; position: relative; padding: 4px 0;
      transition: color .22s; background: none; border: none;
    }
    .arr { display: inline-block; font-size: 12px; transform: rotate(-45deg); transition: transform .2s, opacity .2s; opacity: 0.5; }
    .nav-hello::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--terra); transition: width .25s; }
    .nav-hello:hover { color: var(--terra); }
    .nav-hello:hover::after { width: 100%; }
    .nav-hello:hover .arr { transform: translateX(2px) rotate(-45deg); opacity: 1; }

    .resume-btn {
      border: 1.5px solid var(--terra); background: transparent;
      padding: 8px 22px; font-family: 'DM Sans', sans-serif;
      font-size: 14px; font-weight: 400; color: var(--terra);
      cursor: pointer; letter-spacing: 0.3px; border-radius: 2px;
      transition: background .25s, color .25s;
    }
    .resume-btn:hover { background: var(--terra); color: var(--cream); }

    /* ════════════════════════════
       APP — single render mount
    ════════════════════════════ */
    #app { animation: pageIn .35s ease; }
    @keyframes pageIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

    /* ════════════════════════════
       HOME
    ════════════════════════════ */
    .home-root {
      display: flex; flex-direction: column;
      justify-content: center;
      min-height: calc(100vh - 85px);
      padding: 24px 0 0;
    }

    .hero {
      text-align: center; padding: 0 40px 16px;
      max-width: 1000px; margin: 0 auto; width: 100%;
    }
    .greeting { font-size: 17px; font-weight: 400; color: var(--muted); letter-spacing: 0.2px; margin-bottom: 12px; }
    .headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 4.2vw, 54px);
      font-style: italic; font-weight: 700;
      line-height: 1.1; letter-spacing: -0.3px; margin-bottom: 16px;
    }
    .headline-line { display: block; white-space: nowrap; }
    .accent { color: var(--terra); }
    .subtext { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 520px; margin: 0 auto 24px; }

    .cards {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
      padding: 0 64px 16px; max-width: 900px; margin: 0 auto; width: 100%;
    }

    /* Card — native <button>, full card clickable */
    .card {
      border: 1.5px solid var(--border); padding: 24px 24px 22px;
      background: transparent; cursor: pointer;
      position: relative; overflow: hidden; border-radius: 3px;
      text-align: left; width: 100%; font-family: inherit;
      transition: border-color .28s, transform .25s, box-shadow .25s;
    }
    .card:hover {
      border-color: var(--terra);
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(0,0,0,.09);
    }
    .card > * { position: relative; z-index: 1; }

    /* Arrow — positioned bottom-right, slides in on hover */
    .card-arrow {
      position: absolute; bottom: 22px; right: 22px;
      font-size: 16px; color: var(--terra);
      opacity: 0; transform: translateX(-6px);
      transition: opacity .25s, transform .25s;
      z-index: 1; line-height: 1;
    }
    .card:hover .card-arrow { opacity: 1; transform: translateX(0); }

    /* Card image area */
    .card-img {
      width: calc(100% + 48px);
      margin: -24px -24px 20px;
      aspect-ratio: 16/9;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
      background: #e4ddd3;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 500; letter-spacing: 1px;
      text-transform: uppercase; color: var(--muted);
      transition: border-color .25s;
    }
    .card-img img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      display: block;
      transition: transform .5s ease;
    }
    .card:hover .card-img { border-color: var(--terra); }
    .card:hover .card-img img { transform: scale(1.03); }

    .card-label {
      font-size: 10px; font-weight: 500; letter-spacing: 1.3px;
      color: var(--terra); text-transform: uppercase;
      margin-bottom: 12px; display: block;
    }
    .card-title {
      font-family: 'Playfair Display', serif; font-size: 22px;
      font-weight: 500; color: var(--ink); margin-bottom: 8px;
      line-height: 1.2; font-style: normal; display: block;
      transition: color .25s;
    }
    .card:hover .card-title { color: var(--terra); }
    .card-desc {
      font-size: 13px; color: var(--muted); font-weight: 300;
      line-height: 1.55; display: block; padding-right: 28px;
    }

    .availability { display: flex; align-items: center; justify-content: center; gap: 8px; padding-bottom: 16px; margin-top: 8px; }
    .avail-dot { width: 7px; height: 7px; border-radius: 50%; background: #4caf72; animation: pulse 2s ease infinite; }
    .avail-text { font-size: 12px; font-weight: 400; color: var(--muted); letter-spacing: 0.3px; }

    /* ════════════════════════════
       WORK PAGE
    ════════════════════════════ */
    .work-root { padding: 48px 64px 32px; max-width: 1100px; margin: 0 auto; }

    .page-eyebrow { font-size: 10.5px; font-weight: 500; letter-spacing: 1.8px; color: var(--terra); text-transform: uppercase; margin-bottom: 10px; }
    .page-heading { font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,44px); font-weight: 500; font-style: italic; color: var(--ink); line-height: 1.15; margin-bottom: 32px; }

    .cat-tabs { display: flex; margin-bottom: 52px; border-bottom: 1.5px solid var(--border); }
    .cat-tab { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400; color: var(--muted); padding: 10px 22px; cursor: pointer; background: none; border: none; position: relative; transition: color .2s; letter-spacing: 0.2px; }
    .cat-tab::after { content: ''; position: absolute; left: 0; bottom: -1.5px; width: 0; height: 2px; background: var(--terra); transition: width .25s; }
    .cat-tab:hover { color: var(--ink); }
    .cat-tab.active { color: var(--terra); font-weight: 500; }
    .cat-tab.active::after { width: 100%; }
    .cat-panel { display: none; }
    .cat-panel.active { display: block; animation: pageIn .3s ease; }

    /* ── 2-col project card grid ── */
    .work-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .project-card {
      border: 1.5px solid var(--border); border-radius: 3px;
      overflow: hidden; cursor: pointer; background: transparent;
      display: flex; flex-direction: column;
      transition: border-color .25s, transform .22s, box-shadow .22s;
    }
    .project-card:hover {
      border-color: var(--terra);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,.07);
    }

    .project-thumb {
      width: 100%; aspect-ratio: 16/9;
      overflow: visible;
      position: relative;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 500; letter-spacing: 1px;
      text-transform: uppercase; color: var(--muted);
      background: #e4ddd3;
    }
    .project-thumb img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      display: block;
    }
    .project-card:hover .project-thumb img { transform: scale(1.04); }
    .t1{background:#e8e3da} .t2{background:#dfd8cc} .t3{background:#e4ddd3}
    .t4{background:#d9d2c7} .t5{background:#e2dbd0} .t6{background:#dbd3c8}

    .project-info { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }

    .project-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
    .tag {
      font-size: 9.5px; font-weight: 500; letter-spacing: .8px;
      text-transform: uppercase; color: var(--terra);
      border: 1px solid rgba(196,80,42,.28); border-radius: 2px; padding: 2px 7px;
    }

    .project-name {
      font-family: 'Playfair Display', serif;
      font-size: 16px; font-weight: 500; color: var(--ink);
      line-height: 1.2; margin-bottom: 6px;
    }
    .project-card:hover .project-name { color: var(--terra); }

    .project-desc {
      font-size: 14px; font-weight: 300; color: var(--muted);
      line-height: 1.65; margin-top: auto; padding-top: 4px;
    }

    @media (max-width: 720px) {
      .work-grid { grid-template-columns: 1fr; }
    }

    /* ════════════════════════════
       ABOUT PAGE
    ════════════════════════════ */
    .about-root { padding: 48px 64px 32px; max-width: 1100px; margin: 0 auto; }

    .about-section { margin-bottom: 56px; }
    .section-cat-label { font-size: 10px; font-weight: 500; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }

    .about-intro-grid { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
    .photo-block { position: sticky; top: 100px; }
    .photo-frame { width: 100%; aspect-ratio: 3/4; background: #e4ddd3; border: 1.5px solid var(--border); border-radius: 3px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
    .photo-icon { font-size: 28px; opacity: 0.4; }
    .photo-label { font-size: 11px; font-weight: 400; letter-spacing: 0.5px; color: var(--muted); }
    .photo-hint { font-size: 10px; font-weight: 300; color: var(--border); }

    .about-text p { font-size: 14px; font-weight: 300; color: var(--ink); line-height: 1.75; margin-bottom: 12px; }
    .about-text p strong { font-weight: 500; }
    .about-aside-blocks { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
    .aside-block { border: 1.5px solid var(--border); border-radius: 3px; padding: 14px 18px; }
    .aside-block-label { font-size: 9.5px; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase; color: var(--terra); margin-bottom: 5px; }
    .aside-block-text { font-size: 14px; font-weight: 300; color: var(--ink); line-height: 1.5; }

    .timeline { display: flex; flex-direction: column; }
    .tl-item { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--border); }
    .tl-item:last-child { border-bottom: none; }
    .tl-year { font-size: 11px; font-weight: 500; letter-spacing: .8px; color: var(--terra); padding-top: 3px; }
    .tl-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
    .tl-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.65; }
    .campaign-cta {
      display: inline-block; margin-top: 12px;
      font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 400;
      color: var(--terra); text-decoration: none; letter-spacing: 0.3px;
      position: relative; cursor: pointer;
    }
    .campaign-cta::after {
      content: ''; position: absolute; left: 0; bottom: -1px;
      width: 0; height: 1px; background: var(--terra); transition: width .25s;
    }
    .campaign-cta:hover::after { width: 100%; }

    .exp-list { display: flex; flex-direction: column; }
    .exp-item { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border); align-items: start; }
    .exp-item:last-child { border-bottom: none; }
    .exp-role { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
    .exp-company { font-size: 13px; font-weight: 400; color: var(--terra); margin-bottom: 8px; }
    .exp-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.65; }
    .exp-date { font-size: 13px; font-weight: 400; color: var(--muted); white-space: nowrap; padding-top: 4px; }

    .skills-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .skill-group { border: 1.5px solid var(--border); border-radius: 3px; padding: 20px 22px; }
    .skill-group-name { font-size: 10px; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase; color: var(--terra); margin-bottom: 14px; }
    .skill-list { display: flex; flex-direction: column; gap: 8px; }
    .skill-item { font-size: 13px; font-weight: 300; color: var(--ink); display: flex; align-items: center; gap: 8px; }
    .skill-item::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }

    .cert-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .cert-card { border: 1.5px solid var(--border); border-radius: 3px; padding: 22px; transition: border-color .22s, transform .22s; }
    .cert-card:hover { border-color: var(--terra); transform: translateY(-2px); }
    .cert-issuer { font-size: 9.5px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
    .cert-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
    .cert-year { font-size: 12px; font-weight: 300; color: var(--muted); }

    /* ── Toast ── */
    .toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(60px); background: var(--ink); color: var(--cream); padding: 11px 22px; font-family: 'DM Sans', sans-serif; font-size: 13px; border-radius: 3px; transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .3s; opacity: 0; pointer-events: none; white-space: nowrap; z-index: 9999; }
    .toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(.65)} }

    @media (max-width: 820px) {
      .nav-inner { padding: 18px 24px; }
      .work-root, .about-root { padding: 36px 24px 28px; }
      .cards { grid-template-columns: 1fr; padding: 0 24px 20px; }
      .about-intro-grid { grid-template-columns: 1fr; }
      .photo-block { position: static; }
      .skills-grid,.cert-grid { grid-template-columns: 1fr 1fr; }
      .tl-item { grid-template-columns: 72px 1fr; }
    }

    /* ════════════════════════════
       FOOTER
    ════════════════════════════ */
    /* ── Footer ── */
    .site-footer {
      border-top: 1px solid var(--border);
      margin-top: 0;
      padding: 52px 64px 44px;
      max-width: 1100px;
      margin-left: auto; margin-right: auto;
    }
    .footer-top-label {
      font-size: 9.5px; font-weight: 500; letter-spacing: 2px;
      text-transform: uppercase; color: var(--terra);
      margin-bottom: 32px; display: block;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .footer-left {}
    .footer-bio-name {
      font-family: 'Playfair Display', serif;
      font-size: 22px; font-weight: 500; font-style: italic;
      color: var(--ink); margin-bottom: 10px; line-height: 1.2;
    }
    .footer-bio-desc {
      font-size: 14px; font-weight: 300; color: var(--muted);
      line-height: 1.7; max-width: 320px;
    }
    .footer-right {
      display: flex; flex-direction: column; gap: 0;
    }
    .footer-link-row {
      display: flex; align-items: baseline; justify-content: space-between;
      padding: 13px 0;
    }
    .footer-link-label {
      font-size: 9.5px; font-weight: 500; letter-spacing: 1.3px;
      text-transform: uppercase; color: var(--muted); flex-shrink: 0;
    }
    .footer-link-value {
      font-size: 14px; font-weight: 400; color: var(--ink);
      text-decoration: none; cursor: pointer;
      position: relative; transition: color .22s;
      background: none; border: none; padding: 0;
      display: inline-flex; align-items: center; gap: 6px;
    }
    .footer-link-value .f-arr {
      font-size: 11px; opacity: 0; transform: translateX(-4px);
      transition: opacity .22s, transform .22s; color: var(--terra);
    }
    .footer-link-value:hover { color: var(--terra); }
    .footer-link-value:hover .f-arr { opacity: 1; transform: translateX(0); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 20px; margin-top: 36px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-copy { font-size: 11px; font-weight: 300; color: var(--muted); }
    .footer-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--terra); display: inline-block; }
    @media (max-width: 720px) {
      .site-footer { padding: 40px 24px 32px; }
      .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    }

    /* ════════════════════════════
       CASE STUDY PAGE
    ════════════════════════════ */
    .cs-root { max-width: 860px; margin: 0 auto; padding: 48px 64px 32px; }

    .cs-back {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 400; letter-spacing: 0.4px;
      color: var(--muted); cursor: pointer; background: none; border: none;
      padding: 0; margin-bottom: 48px; transition: color .2s;
      text-transform: uppercase;
    }
    .cs-back:hover { color: var(--terra); }
    .cs-back-arrow { font-size: 14px; transition: transform .2s; }
    .cs-back:hover .cs-back-arrow { transform: translateX(-3px); }

    /* Hero band */
    .cs-hero { margin-bottom: 64px; }
    .cs-overline {
      font-size: 11px; font-weight: 500; letter-spacing: 1.6px;
      text-transform: uppercase; color: var(--terra); margin-bottom: 12px;
    }
    .cs-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 300; font-style: italic;
      color: var(--ink); line-height: 1.1; margin-bottom: 18px;
    }
    .cs-subtitle {
      font-size: 16px; font-weight: 300; color: var(--muted);
      line-height: 1.7; max-width: 640px;
    }

    /* Meta strip */
    .cs-meta {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; border: 1.5px solid var(--border); border-radius: 3px;
      margin-bottom: 72px; overflow: hidden;
    }
    .cs-meta-item {
      padding: 20px 24px; border-right: 1px solid var(--border);
    }
    .cs-meta-item:last-child { border-right: none; }
    .cs-meta-label {
      font-size: 11px; font-weight: 500; letter-spacing: 1.2px;
      text-transform: uppercase; color: var(--terra); margin-bottom: 6px;
    }
    .cs-meta-value { font-size: 14px; font-weight: 400; color: var(--ink); line-height: 1.4; }

    /* Image placeholder */
    .cs-img {
      width: 100%; background: #ece8e2;
      border: 1px solid var(--border); border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 500; letter-spacing: 1px;
      text-transform: uppercase; color: var(--muted);
    }
    .cs-img-hero { aspect-ratio: 16/7; margin-bottom: 72px; }
    .cs-img-full { aspect-ratio: 16/9; margin: 28px 0; }
    .cs-img-half { aspect-ratio: 4/3; }
    .cs-img-tall { aspect-ratio: 3/4; }
    .cs-img-wide { aspect-ratio: 21/9; margin: 28px 0; }

    /* Section */
    .cs-section { margin-bottom: 64px; }
    .cs-section-label {
      font-size: 11px; font-weight: 500; letter-spacing: 2px;
      text-transform: uppercase; color: var(--terra);
      margin-bottom: 8px;
    }
    .cs-section-title {
      font-family: 'Playfair Display', serif;
      font-size: 26px; font-weight: 300; font-style: italic;
      color: var(--ink); line-height: 1.2; margin-bottom: 20px;
    }
    .cs-body {
      font-size: 14px; font-weight: 300; color: var(--ink);
      line-height: 1.85; margin-bottom: 16px;
    }
    .cs-body strong { font-weight: 500; }

    /* Stat row */
    .cs-stats {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px; margin: 32px 0;
    }
    .cs-stat {
      border: 1.5px solid var(--border); border-radius: 3px;
      padding: 24px 22px;
    }
    .cs-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 36px; font-weight: 300; font-style: italic;
      color: var(--terra); line-height: 1; margin-bottom: 8px;
    }
    .cs-stat-label { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.5; }

    /* Quote */
    .cs-quote {
      border-left: 2px solid var(--terra);
      padding: 6px 0 6px 24px; margin: 28px 0;
    }
    .cs-quote-text {
      font-family: 'Playfair Display', serif;
      font-size: 17px; font-style: italic; font-weight: 400;
      color: var(--ink); line-height: 1.6; margin-bottom: 8px;
    }
    .cs-quote-attr {
      font-size: 12px; font-weight: 500; letter-spacing: 0.8px;
      color: var(--muted); text-transform: uppercase;
    }

    /* Pain points grid */
    .cs-pain-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 16px; margin: 28px 0;
    }
    .cs-pain-card {
      border: 1.5px solid var(--border); border-radius: 3px;
      padding: 22px;
    }
    .cs-pain-num {
      font-size: 11px; font-weight: 500; letter-spacing: 1.6px;
      text-transform: uppercase; color: var(--terra); margin-bottom: 8px;
    }
    .cs-pain-title {
      font-family: 'Playfair Display', serif;
      font-size: 15px; font-weight: 500; color: var(--ink);
      margin-bottom: 8px; line-height: 1.3;
    }
    .cs-pain-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.65; }

    /* HMW statement */
    .cs-hmw {
      background: var(--ink); color: var(--cream);
      border-radius: 3px; padding: 36px 40px; margin: 32px 0;
    }
    .cs-hmw-label {
      font-size: 9px; font-weight: 500; letter-spacing: 2px;
      text-transform: uppercase; color: var(--terra); margin-bottom: 14px;
    }
    .cs-hmw-text {
      font-family: 'Playfair Display', serif;
      font-size: clamp(16px, 2.2vw, 22px);
      font-style: italic; font-weight: 300;
      line-height: 1.45; color: var(--cream);
    }
    .cs-hmw-text em { color: var(--terra); font-style: italic; }

    /* Persona card */
    .cs-persona {
      border: 1.5px solid var(--border); border-radius: 3px;
      padding: 28px 32px; margin: 28px 0;
      display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: start;
    }
    .cs-persona-avatar {
      width: 56px; height: 56px; border-radius: 50%;
      background: #e4ddd3; border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; flex-shrink: 0;
    }
    .cs-persona-name {
      font-family: 'Playfair Display', serif;
      font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: 2px;
    }
    .cs-persona-role { font-size: 11px; font-weight: 400; color: var(--terra); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.8px; }
    .cs-persona-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 14px; }
    .cs-persona-col-label { font-size: 9px; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
    .cs-persona-list { list-style: none; }
    .cs-persona-list li { font-size: 12.5px; font-weight: 300; color: var(--ink); line-height: 1.6; padding-left: 12px; position: relative; }
    .cs-persona-list li::before { content: '–'; position: absolute; left: 0; color: var(--terra); }
    .cs-persona-quote {
      font-size: 13px; font-style: italic; font-weight: 300;
      color: var(--muted); border-top: 1px solid var(--border);
      padding-top: 14px; line-height: 1.6;
    }

    /* Design decisions */
    .cs-decision { padding: 28px 0; border-bottom: 1px solid var(--border); }
    .cs-decision:first-child { border-top: 1px solid var(--border); }
    .cs-decision-num {
      font-size: 11px; font-weight: 500; letter-spacing: 1.6px;
      text-transform: uppercase; color: var(--terra); margin-bottom: 8px;
    }
    .cs-decision-title {
      font-family: 'Playfair Display', serif;
      font-size: 17px; font-weight: 500; color: var(--ink);
      margin-bottom: 10px; line-height: 1.3;
    }
    .cs-decision-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; }

    /* Design features numbered */
    .cs-features { display: flex; flex-direction: column; gap: 0; margin: 28px 0; }
    .cs-feature { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
    .cs-feature:first-child { border-top: 1px solid var(--border); }
    .cs-feature-num {
      font-family: 'Playfair Display', serif;
      font-size: 24px; font-weight: 300; font-style: italic;
      color: var(--terra); line-height: 1; padding-top: 2px;
    }
    .cs-feature-title {
      font-family: 'Playfair Display', serif;
      font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: 6px;
    }
    .cs-feature-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.65; }

    /* Usability table */
    .cs-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
    .cs-table th {
      font-size: 9.5px; font-weight: 500; letter-spacing: 1.2px;
      text-transform: uppercase; color: var(--terra);
      padding: 10px 16px; text-align: left;
      border-bottom: 1.5px solid var(--border);
    }
    .cs-table td {
      font-size: 14px; font-weight: 300; color: var(--ink);
      padding: 14px 16px; border-bottom: 1px solid var(--border);
      line-height: 1.5;
    }
    .cs-table tr:last-child td { border-bottom: none; }
    .cs-table td:not(:first-child) { color: var(--muted); }

    /* Finding callout */
    .cs-finding {
      background: #e9e4dd; border-radius: 3px;
      padding: 24px 28px; margin: 24px 0;
    }
    .cs-finding-label {
      font-size: 9px; font-weight: 500; letter-spacing: 1.6px;
      text-transform: uppercase; color: var(--terra); margin-bottom: 8px;
    }
    .cs-finding-text { font-size: 14px; font-weight: 300; color: var(--ink); line-height: 1.7; }
    .cs-finding-text strong { font-weight: 500; }

    /* Reflections */
    .cs-reflections { display: flex; flex-direction: column; gap: 0; }
    .cs-reflection { display: grid; grid-template-columns: 32px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
    .cs-reflection:first-child { border-top: 1px solid var(--border); }
    .cs-reflection-icon { font-size: 18px; line-height: 1.6; }
    .cs-reflection-title { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 300; color: var(--ink); margin-bottom: 6px; }
    .cs-reflection-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.65; }

    /* two col layout */
    .cs-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 28px 0; }

    @media (max-width: 820px) {
      .cs-root { padding: 32px 24px 24px; }
      .cs-meta { grid-template-columns: 1fr 1fr; }
      .cs-stats { grid-template-columns: 1fr; }
      .cs-pain-grid { grid-template-columns: 1fr; }
      .cs-two-col { grid-template-columns: 1fr; }
      .cs-persona { grid-template-columns: 1fr; }
      .cs-persona-cols { grid-template-columns: 1fr; }
      .cs-hmw { padding: 24px; }
    }

    /* ════════════════════════════
       DARK THEME
    ════════════════════════════ */
    body.dark {
      --cream: #141414;
      --ink:   #F0EDE6;
      --muted: #9a9a92;
      --border:#2e2e2e;
      background: #141414;
    }
    body.dark .c-ring { border-color: var(--terra); }
    body.dark .cs-hmw { background: #1e1e1e; border: 1px solid #2e2e2e; }
    body.dark .cs-finding { background: #1e1e1e; }
    body.dark .photo-frame,
    body.dark .cs-img { background: #1e1e1e; }

    /* ── Theme toggle — sun/moon pill ── */
    .theme-toggle {
      display: inline-flex; align-items: center; justify-content: center;
      width: 30px; height: 30px; border-radius: 50%;
      background: transparent; border: 1.5px solid var(--border);
      cursor: pointer; flex-shrink: 0;
      transition: border-color .3s, background .3s, transform .2s;
      position: relative;
    }
    .theme-toggle:hover { border-color: var(--terra); transform: scale(1.1); }
    .theme-toggle svg {
      width: 14px; height: 14px;
      transition: transform .4s, opacity .3s;
    }
    /* light mode: show moon crescent; dark mode: show sun rays */
    .theme-toggle .t-moon { opacity: 1; transform: rotate(0deg); }
    .theme-toggle .t-sun  { opacity: 0; position: absolute; transform: rotate(30deg) scale(0.7); }
    body.dark .theme-toggle .t-moon { opacity: 0; transform: rotate(-30deg) scale(0.7); }
    body.dark .theme-toggle .t-sun  { opacity: 1; transform: rotate(0deg) scale(1); }
    body.dark .theme-toggle { border-color: #3e3e3e; }
    body.dark .theme-toggle:hover { border-color: var(--terra); }
    /* Ensure SVG icons have explicit contrast in both modes */
    .theme-toggle .t-moon { color: #3a3a3a; }
    .theme-toggle .t-sun  { color: #3a3a3a; }
    body.dark .theme-toggle .t-moon { color: #9a9a92; }
    body.dark .theme-toggle .t-sun  { color: #C4502A; }

    /* ════════════════════════════
       CASE STUDY PROJECT NAV
       (only shown on cs pages)
    ════════════════════════════ */
    .cs-project-nav {
      border-top: 1px solid var(--border);
      margin-top: 0;
      padding: 18px 64px;
      max-width: 1200px; margin-left: auto; margin-right: auto;
      display: flex; align-items: center; gap: 6px;
      overflow-x: auto;
    }
    .cs-project-nav-label {
      font-size: 9.5px; font-weight: 500; letter-spacing: 1.4px;
      text-transform: uppercase; color: var(--muted);
      margin-right: 8px; white-space: nowrap; flex-shrink: 0;
    }
    .cs-pnav-btn {
      font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 400;
      color: var(--muted); background: none; border: 1.5px solid var(--border);
      border-radius: 2px; padding: 5px 14px; cursor: pointer;
      white-space: nowrap; flex-shrink: 0;
      transition: color .2s, border-color .2s, background .2s;
    }
    .cs-pnav-btn:hover { color: var(--ink); border-color: var(--ink); }
    .cs-pnav-btn.active { color: var(--terra); border-color: var(--terra); font-weight: 500; }

    /* ════════════════════════════
       NEXT CASE STUDY + OTHER PROJECTS
    ════════════════════════════ */
    .cs-next-section {
      border-top: 1px solid var(--border);
      margin-top: 56px;
      padding: 48px 0 0;
    }
    .cs-next-label {
      font-size: 9.5px; font-weight: 500; letter-spacing: 1.8px;
      text-transform: uppercase; color: var(--terra); margin-bottom: 20px;
    }
    .cs-next-card {
      border: 1.5px solid var(--border); border-radius: 3px;
      padding: 28px 32px; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
      transition: border-color .25s, transform .2s, box-shadow .2s;
      text-align: left; background: none; width: 100%;
      font-family: inherit;
    }
    .cs-next-card:hover { border-color: var(--terra); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.08); }
    .cs-next-card-left {}
    .cs-next-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
    .cs-next-title {
      font-family: 'Playfair Display', serif; font-size: 22px;
      font-weight: 300; color: var(--ink); line-height: 1.2;
    }
    .cs-next-arrow {
      font-size: 24px; color: var(--terra); flex-shrink: 0;
      transition: transform .2s;
    }
    .cs-next-card:hover .cs-next-arrow { transform: translateX(4px); }

    .cs-other-projects-label {
      font-size: 9.5px; font-weight: 500; letter-spacing: 1.8px;
      text-transform: uppercase; color: var(--muted);
      margin: 48px 0 16px;
    }
    .cs-other-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 8px;
    }
    .cs-other-card {
      border: 1.5px solid var(--border); border-radius: 3px;
      padding: 22px 20px; cursor: pointer; background: none;
      text-align: left; font-family: inherit; width: 100%;
      display: flex; flex-direction: column;
      transition: border-color .22s, transform .2s, box-shadow .2s;
    }
    .cs-other-card:hover {
      border-color: var(--terra); transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,.06);
    }
    .cs-other-icon {
      font-size: 12px; font-weight: 500; letter-spacing: 1px;
      color: var(--terra); margin-bottom: 10px; display: block;
      text-transform: uppercase;
    }
    .cs-other-name {
      font-family: 'Playfair Display', serif; font-size: 15px;
      font-weight: 300; color: var(--ink); margin-bottom: 6px; line-height: 1.25;
    }
    .cs-other-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.55; }

    @media (max-width: 640px) {
      .cs-project-nav { padding: 14px 24px; }
      .cs-other-grid { grid-template-columns: 1fr; }
    }

    /* ════════════════════════════
       CONTACT PAGE
    ════════════════════════════ */
    .contact-root {
      max-width: 860px; margin: 0 auto;
      padding: 80px 64px 0;
      min-height: calc(100vh - 85px);
      display: flex; flex-direction: column;
    }
    .contact-eyebrow {
      font-size: 10.5px; font-weight: 500; letter-spacing: 1.8px;
      text-transform: uppercase; color: var(--terra); margin-bottom: 14px;
    }
    .contact-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 500; font-style: italic;
      color: var(--ink); line-height: 1.08; margin-bottom: 20px;
    }
    .contact-intro {
      font-size: 15px; font-weight: 300; color: var(--muted);
      line-height: 1.75; max-width: 520px; margin-bottom: 64px;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-bottom: 56px;
      width: 100%;
    }
    .contact-card {
      border: 1.5px solid var(--border); border-radius: 3px;
      padding: 28px 24px; text-decoration: none;
      cursor: pointer; background: none; text-align: left;
      width: 100%; font-family: inherit;
      display: flex; flex-direction: column;
      transition: border-color .25s, transform .22s, box-shadow .22s;
    }
    .contact-card:hover {
      border-color: var(--terra); transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,.07);
    }
    .contact-card-icon {
      font-size: 9px; font-weight: 600; letter-spacing: 1.6px;
      text-transform: uppercase; color: var(--terra);
      margin-bottom: 20px; display: block; opacity: 1;
    }
    .contact-card-label {
      font-size: 9px; font-weight: 500; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--terra); margin-bottom: 7px;
    }
    .contact-card-title {
      font-family: 'Playfair Display', serif; font-size: 16px;
      font-weight: 500; color: var(--ink); margin-bottom: 8px;
      line-height: 1.25; flex-grow: 0;
    }
    .contact-card-desc {
      font-size: 14px; font-weight: 300; color: var(--muted);
      line-height: 1.6; margin-top: auto;
    }
    .contact-availability {
      display: flex; align-items: center; gap: 8px;
      margin-top: auto; padding-bottom: 48px;
    }
    .contact-avail-dot { width: 7px; height: 7px; border-radius: 50%; background: #4caf72; animation: pulse 2s ease infinite; }
    .contact-avail-text { font-size: 13px; font-weight: 300; color: var(--muted); }
    @media (max-width: 720px) {
      .contact-root { padding: 48px 24px 0; }
      .contact-grid { grid-template-columns: 1fr; }
    }

    /* Cert with image placeholder */
    .cert-img {
      width: 100%; aspect-ratio: 16/8;
      background: #e8e3da; border-radius: 3px 3px 0 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 9px; font-weight: 500; letter-spacing: 1px;
      text-transform: uppercase; color: var(--muted);
      border-bottom: 1px solid var(--border);
    }
    .cert-card-body { padding: 16px 18px 18px; }
    @media (max-width: 720px) {
    }

    /* ── Case study hero image ── */
    .cs-hero-img {
      width: 100%;
      margin-bottom: 56px;
      border-radius: 6px;
      overflow: hidden;
      line-height: 0;
      background: #ece8e2;
      border: 1px solid var(--border);
    }
    .cs-hero-img img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 4px;
      opacity: 0;
      animation: imgFadeIn .75s ease forwards .1s;
    }
    body.dark .cs-hero-img {
      background: #1a1a1a;
      border-color: #2a2a2a;
    }
    body.dark .cs-hero-img img {
      filter: brightness(0.9) contrast(0.95);
    }
    @keyframes imgFadeIn {
      to { opacity: 1; }
    }


    /* ── Tool comparison table ── */
    .tool-table { display: flex; flex-direction: column; gap: 0; margin: 28px 0; }
    .tool-row {
      display: grid;
      grid-template-columns: 180px 200px 1fr;
      gap: 24px;
      padding: 22px 24px;
      border: 1px solid var(--border);
      border-bottom: none;
      align-items: start;
      transition: background .2s;
    }
    .tool-row:first-child { border-radius: 4px 4px 0 0; }
    .tool-row:last-child  { border-bottom: 1px solid var(--border); border-radius: 0 0 4px 4px; }
    .tool-row:hover { background: rgba(0,0,0,.02); }
    body.dark .tool-row:hover { background: rgba(255,255,255,.02); }

    /* Best overall — subtle terracotta tint */
    .tool-row.tool-best {
      background: rgba(196,80,42,.04);
      border-left: 3px solid var(--terra);
    }
    .tool-row.tool-best:hover { background: rgba(196,80,42,.07); }

    /* Lowest — muted, slightly dimmed */
    .tool-row.tool-worst { opacity: 0.72; }

    .tool-name-col {}
    .tool-name-label {
      font-size: 9px; font-weight: 500; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--muted); margin-bottom: 5px;
    }
    .tool-name {
      font-family: 'Playfair Display', serif;
      font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.2;
    }
    .tool-badge {
      display: inline-block; margin-top: 6px;
      font-size: 8.5px; font-weight: 500; letter-spacing: 1px;
      text-transform: uppercase; padding: 2px 8px; border-radius: 2px;
      border: 1px solid var(--border); color: var(--muted);
    }
    .tool-badge.badge-best { border-color: var(--terra); color: var(--terra); }
    .tool-badge.badge-worst { border-color: var(--border); color: var(--muted); opacity: 0.7; }

    .tool-verdict-col {}
    .tool-verdict {
      font-size: 14px; font-weight: 500; color: var(--ink);
      line-height: 1.3; margin-bottom: 0;
    }

    .tool-desc-col {}
    .tool-desc {
      font-size: 14px; font-weight: 300; color: var(--muted);
      line-height: 1.65;
    }

    @media (max-width: 720px) {
      .tool-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px;
      }
      .tool-badge { margin-top: 4px; }
    }

    /* ── Case study image wrapper — soft container for non-hero images ── */
    .cs-img-wrap {
      width: 100%;
      margin-bottom: 32px;
      border-radius: 6px;
      overflow: hidden;
      background: #ece8e2;
      border: 1px solid var(--border);
      padding: 24px;
      box-sizing: border-box;
      line-height: 0;
    }
    .cs-img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 4px;
    }
    body.dark .cs-img-wrap {
      background: #1a1a1a;
      border-color: #2a2a2a;
    }
    body.dark .cs-img-wrap img {
      filter: brightness(0.9) contrast(0.95);
    }

    body.dark .cs-img { background: #1a1a1a !important; color: #383838; }
    .cs-img { border-radius: 4px; }
  
    /* ══ CASE STUDY HEADINGS — LIGHT WEIGHT FORCED ══
       These rules target every Playfair Display element inside
       .cs-root and override ALL other weight declarations.
       Specificity is high (.cs-root + element + !important).     */

    .cs-root h1,
    .cs-root h2,
    .cs-root h3,
    .cs-root h4,
    .cs-root [class*="cs-title"],
    .cs-root [class*="cs-section-title"],
    .cs-root [class*="cs-stat-num"],
    .cs-root [class*="cs-hmw-text"],
    .cs-root [class*="cs-feature-num"],
    .cs-root [class*="cs-pain-title"],
    .cs-root [class*="cs-decision-title"],
    .cs-root [class*="cs-feature-title"],
    .cs-root [class*="cs-reflection-title"],
    .cs-root [class*="cs-next-title"],
    .cs-root [class*="cs-other-name"],
    .cs-root [class*="cs-persona-name"],
    .cs-root [class*="cs-quote-text"],
    .cs-root p[style*="font-family:'Playfair"],
    .cs-root p[style*="Playfair"] {
      font-weight: 300 !important;
    }

    /* Target the inline-styled paragraph headings inside hobbies/about sections
       that also appear in case study next sections */
    .cs-root p.cs-section-title,
    .cs-root p.cs-pain-title,
    .cs-root p.cs-decision-title,
    .cs-root p.cs-feature-title,
    .cs-root p.cs-reflection-title,
    .cs-root p.cs-next-title,
    .cs-root p.cs-other-name,
    .cs-root p.cs-stat-num,
    .cs-root p.cs-hmw-text,
    .cs-root p.cs-feature-num,
    .cs-root p.cs-quote-text,
    .cs-root p.cs-persona-name,
    .cs-root h1.cs-title {
      font-weight: 300 !important;
    }

    /* Catch any remaining Playfair Display elements in case study scope */
    .cs-root *[style*="font-family"] {
      font-weight: 300 !important;
    }

    /* ── RightWall case study — light headings (Playfair italic 400) ── */
    .cs-rw .cs-title,
    .cs-rw .cs-section-title,
    .cs-rw .cs-pain-title,
    .cs-rw .cs-decision-title,
    .cs-rw .cs-feature-title,
    .cs-rw .cs-reflection-title,
    .cs-rw .cs-next-title,
    .cs-rw .cs-stat-num,
    .cs-rw .cs-hmw-text,
    .cs-rw .cs-feature-num,
    .cs-rw .cs-quote-text,
    .cs-rw .cs-other-name {
      font-weight: 400 !important;
      font-style: italic !important;
    }
    /* Section titles that are already italic but may be rendering at wrong weight */
    .cs-rw p, .cs-rw h1 {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ── Coming soon chip — glass style ── */
    .coming-soon-chip {
      position: absolute;
      top: 16px; right: 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 11.5px; font-weight: 400; letter-spacing: 0.3px;
      color: rgba(20, 18, 16, 0.88);
      background: rgba(248, 245, 240, 0.72);
      border: 1px solid rgba(210, 204, 196, 0.6);
      padding: 6px 13px; border-radius: 5px;
      z-index: 20; pointer-events: none;
      white-space: nowrap; line-height: 1;
      backdrop-filter: blur(8px) saturate(1.3);
      -webkit-backdrop-filter: blur(8px) saturate(1.3);
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.10), inset 0 1px 0 rgba(255,255,255,0.4);
    }
    body.dark .coming-soon-chip {
      color: rgba(226, 222, 215, 0.92);
      background: rgba(22, 22, 22, 0.68);
      border-color: rgba(80, 76, 70, 0.5);
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.06);
    }


    /* ════════════════════════════
       Reduced motion + a11y
    ════════════════════════════ */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
      }
      .c-dot, .c-ring { display: none !important; }
      .card:hover { transform: none !important; box-shadow: none !important; }
      .card:hover .card-img img { transform: none !important; }
      #app { animation: none !important; }
    }
    @media (pointer: coarse) {
      .c-dot, .c-ring { display: none !important; }
    }
