:root {
      --bg:        #f8fafb;
      --bg-2:      #eef3f1;
      --bg-3:      #e5ece9;
      --ink:       #1d1d1f;
      --ink-2:     #424245;
      --ink-3:     #6e6e73;
      --ink-4:     #86868b;
      --rule:      #cfd8d5;
      --rule-2:    #e2e9e6;
      --blue:      #0b765d;
      --blue-hov:  #075943;
      --gold:      #b9822f;
      --rose:      #b45c62;
      --night:     #07110d;
      --glass-light: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 252, 0.9) 46%, rgba(245, 245, 247, 0.94));
      --glass-light-border: rgba(255, 255, 255, 0.92);
      --glass-dark: linear-gradient(145deg, rgba(42, 42, 46, 0.98), rgba(18, 18, 21, 0.96) 50%, rgba(6, 6, 8, 0.98));
      --glass-dark-border: rgba(255, 255, 255, 0.2);
      --glass-shadow: 0 14px 38px rgba(31, 35, 43, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.72);
      --glass-shadow-dark: 0 22px 58px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.18);
      --sans:      -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Helvetica Neue', Arial, sans-serif;
      --max:       900px;
      --max-wide:  1120px;
    }

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

    html { scroll-behavior: smooth; scroll-padding-top: 64px; }

    body {
      background:
        linear-gradient(180deg, #f8fafb 0%, #f2f6f5 42%, #fafafa 100%);
      color: var(--ink);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.47;
      letter-spacing: -0.022em;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

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

    img { display: block; max-width: 100%; }
    a { color: inherit; }

    /* ── Nav ── */
    nav {
      position: fixed;
      top: 10px; left: 50%; right: auto;
      width: min(var(--max-wide), calc(100% - 32px));
      transform: translateX(-50%);
      height: 60px;
      z-index: 300;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 22px;
      background:
        linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.74),
          rgba(255, 255, 255, 0.42) 42%,
          rgba(255, 255, 255, 0.3)
        );
      backdrop-filter: blur(30px) saturate(190%) contrast(105%);
      -webkit-backdrop-filter: blur(30px) saturate(190%) contrast(105%);
      border: 1px solid rgba(255, 255, 255, 0.58);
      border-radius: 999px;
      overflow: hidden;
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.82),
        inset 0 -1px 1px rgba(255, 255, 255, 0.18),
        0 24px 70px rgba(8, 18, 15, 0.24);
      font-family: var(--sans);
      isolation: isolate;
    }

    nav::before,
    nav::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border-radius: inherit;
      z-index: 0;
    }

    nav::before {
      inset: 0;
      background:
        radial-gradient(
          circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
          rgba(255, 255, 255, 0.92),
          rgba(255, 255, 255, 0.42) 18%,
          transparent 42%
        );
      opacity: 0.66;
      mix-blend-mode: screen;
    }

    nav::after {
      inset: 1px;
      background:
        linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.92),
          transparent 28%,
          transparent 70%,
          rgba(255, 255, 255, 0.44)
        );
      opacity: 0.82;
    }

    .nav-inner {
      max-width: var(--max-wide);
      margin: 0 auto;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 2;
    }

    .nav-name {
      font-size: 18px;
      font-weight: 720;
      letter-spacing: -0.04em;
      text-decoration: none;
      color: #0d1110;
      text-shadow: 0 1px 1px rgba(255,255,255,0.48);
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 0;
      align-items: center;
    }

    .nav-links a {
      color: #111514;
      text-decoration: none;
      font-size: 13px;
      font-weight: 650;
      letter-spacing: -0.005em;
      padding: 9px 13px;
      border: 1px solid transparent;
      border-radius: 999px;
      opacity: 0.9;
      text-shadow: 0 1px 1px rgba(255,255,255,0.42);
      transition: background 0.18s ease, border-color 0.18s ease, opacity 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    }

    .nav-links a:hover, .nav-links a.active {
      opacity: 1;
      border: 1px solid rgba(255, 255, 255, 0.36);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.58), rgba(255,255,255,0.24));
      color: #075943;
      backdrop-filter: blur(18px) saturate(180%);
      -webkit-backdrop-filter: blur(18px) saturate(180%);
      box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.55),
        0 8px 20px rgba(8,18,15,0.12);
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      padding: 6px 0 6px 14px;
      color: var(--ink);
      cursor: pointer;
      line-height: 0;
    }
    .nav-toggle svg { width: 18px; height: 18px; }
    body.site-menu-open::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 240;
      background: rgba(7, 17, 13, 0.18);
      pointer-events: none;
    }

    /* ── Layout ── */
    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 22px;
    }
    .container-wide {
      max-width: var(--max-wide);
      margin: 0 auto;
      padding: 0 22px;
    }

    section {
      padding: 88px 0;
      position: relative;
    }

    /* Section header pattern: centered eyebrow + headline + subhead */
    .head {
      text-align: center;
      margin: 0 auto;
      max-width: 820px;
    }

    .eyebrow {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--blue);
      margin-bottom: 14px;
    }

    .h-display {
      font-size: 60px;
      font-weight: 600;
      line-height: 1.05;
      letter-spacing: -0.04em;
      color: var(--ink);
    }

    .h-section {
      font-size: 48px;
      font-weight: 600;
      line-height: 1.07;
      letter-spacing: -0.038em;
      color: var(--ink);
    }

    .h-sub {
      margin-top: 12px;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.3;
      letter-spacing: -0.015em;
      color: var(--ink-3);
    }

    .head-left { text-align: left; max-width: 920px; margin: 0; }

    /* Links / buttons (Apple) */
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--ink);
      color: #fff;
      font-size: 16px;
      font-weight: 400;
      letter-spacing: -0.022em;
      padding: 12px 22px;
      border-radius: 980px;
      text-decoration: none;
      transition: background 0.18s ease;
      line-height: 1;
    }
    .pill:hover { background: var(--blue-hov); }
    .pill.ghost {
      background: transparent;
      color: var(--blue);
      border: 1px solid var(--blue);
      padding: 11px 21px;
    }
    .pill.ghost:hover { background: var(--blue); color: #fff; }

    .a-link {
      color: var(--blue);
      font-size: 16px;
      letter-spacing: -0.022em;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      line-height: 1.3;
    }
    .a-link::after {
      content: '›';
      display: inline-block;
      transform: translateY(-1px);
      font-size: 19px;
    }
    .a-link:hover { text-decoration: underline; text-underline-offset: 3px; }

    .cta-row {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    /* ── HERO ── */
    #hero {
      min-height: clamp(560px, 76vh, 700px);
      padding-top: 126px;
      padding-bottom: 72px;
      display: flex;
      align-items: center;
      text-align: left;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(5, 9, 8, 0.88) 0%, rgba(5, 9, 8, 0.56) 42%, rgba(5, 9, 8, 0.12) 100%),
        linear-gradient(180deg, rgba(5, 9, 8, 0.08), rgba(5, 9, 8, 0.44)),
        url("uploads/DSCF8850_20000.jpeg") center / cover no-repeat;
    }
    #hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 42%;
      pointer-events: none;
      background: linear-gradient(180deg, transparent, rgba(248, 250, 251, 0.96));
    }
    #hero .container {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: var(--max-wide);
    }

    .hero-name {
      font-size: clamp(52px, 7vw, 86px);
      font-weight: 600;
      line-height: 0.96;
      letter-spacing: -0.05em;
      color: #fff;
      max-width: 720px;
    }
    .hero-name .stop { color: var(--gold); }

    .hero-sub {
      margin-top: 18px;
      font-size: clamp(18px, 2vw, 23px);
      font-weight: 400;
      line-height: 1.3;
      letter-spacing: -0.015em;
      color: rgba(255, 255, 255, 0.82);
      max-width: 560px;
      margin-left: 0;
      margin-right: 0;
    }

    .hero-meta {
      margin-top: 26px;
      display: flex;
      justify-content: flex-start;
      gap: 24px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.72);
      flex-wrap: wrap;
    }
    .hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
    .hero-meta-item .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
    }

    .hero-cta {
      margin-top: 32px;
      display: flex;
      justify-content: flex-start;
      gap: 22px;
      flex-wrap: wrap;
    }

    #hero .hero-cta .a-link {
      color: #fff;
      padding: 10px 16px;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.11);
      text-decoration: none;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    #hero .hero-cta .a-link:hover {
      background: rgba(255, 255, 255, 0.18);
    }
    .hero-photo {
      position: absolute;
      z-index: 2;
      right: clamp(20px, 5vw, 72px);
      bottom: clamp(22px, 4vw, 46px);
      width: min(360px, calc(100% - 40px));
      max-width: none;
      margin: 0;
      padding: 0;
    }
    .hero-photo img { display: none; }
    .hero-photo-placeholder {
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: 18px;
      background:
        radial-gradient(ellipse at 30% 20%, rgba(217, 90, 90, 0.18), transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 230, 200, 0.10), transparent 55%),
        linear-gradient(170deg, #1a1a22 0%, #0a0a10 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .hero-photo-placeholder::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        100deg,
        transparent 0,
        transparent 80px,
        rgba(255, 255, 255, 0.018) 80px,
        rgba(255, 255, 255, 0.018) 81px
      );
    }
    .hero-photo-placeholder-inner {
      text-align: center;
      color: #f5f5f7;
      max-width: 480px;
      padding: 0 22px;
      position: relative;
    }
    .hero-photo-placeholder-eyebrow {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.16em;
      color: #d97757;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .hero-photo-placeholder-title {
      display: block;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.05;
    }
    .hero-photo-placeholder-sub {
      display: block;
      margin-top: 14px;
      font-size: 14px;
      line-height: 1.5;
      color: rgba(245, 245, 247, 0.6);
      letter-spacing: -0.005em;
    }
    .shot-img-placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px;
      background:
        radial-gradient(ellipse at 30% 20%, rgba(217, 90, 90, 0.16), transparent 55%),
        linear-gradient(170deg, #1a1a22 0%, #0a0a10 100%);
    }
    .shot-img-placeholder span {
      font-size: 13px;
      color: rgba(245, 245, 247, 0.5);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .hero-photo-cap {
      margin-top: 0;
      text-align: left;
      font-size: 13px;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.68);
      letter-spacing: -0.005em;
      padding: 14px 16px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 12px;
      background: rgba(5, 9, 8, 0.42);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    .hero-photo-cap strong { color: #fff; }

    /* ── HOMEPAGE STORY SECTIONS ── */
    .proof-section {
      padding-top: 44px;
      padding-bottom: 72px;
    }
    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      align-items: stretch;
    }
    .proof-card {
      min-height: 176px;
      border-radius: 22px;
      background: var(--bg-2);
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--rule-2);
    }
    .proof-card-main {
      grid-column: span 2;
      background: var(--ink);
      color: #f5f5f7;
    }
    .proof-grid .proof-card:nth-child(n+4) {
      grid-column: span 2;
    }
    .proof-kicker {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: #2997ff;
      margin-bottom: 18px;
    }
    .proof-card h2 {
      font-size: 36px;
      font-weight: 600;
      line-height: 1.08;
      letter-spacing: -0.04em;
      max-width: 620px;
    }
    .proof-card p {
      font-size: 15px;
      line-height: 1.5;
      color: var(--ink-3);
      letter-spacing: -0.01em;
    }
    .proof-card-main p { color: #a1a1a6; margin-top: 22px; }
    .proof-num {
      display: block;
      font-size: 52px;
      font-weight: 600;
      line-height: 1;
      letter-spacing: -0.045em;
      color: var(--ink);
      margin-bottom: 24px;
    }

    .now-section {
      background: var(--bg-2);
    }
    .now-grid {
      max-width: 1200px;
      margin: 56px auto 0;
      padding: 0 22px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .now-card {
      min-height: 238px;
      border-radius: 22px;
      background: var(--bg);
      border: 1px solid var(--rule-2);
      padding: 30px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .now-card-large {
      grid-column: span 2;
      background: #000;
      color: #f5f5f7;
    }
    .now-grid .now-card:nth-child(4) {
      grid-column: span 2;
    }
    .now-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--blue);
      letter-spacing: 0.01em;
      margin-bottom: 16px;
    }
    .now-card-large .now-label { color: #2997ff; }
    .now-card h3 {
      font-size: 28px;
      font-weight: 600;
      line-height: 1.08;
      letter-spacing: -0.035em;
      color: var(--ink);
      margin-bottom: 16px;
    }
    .now-card-large h3 { color: #f5f5f7; }
    .now-card p {
      font-size: 15px;
      line-height: 1.55;
      color: var(--ink-3);
      letter-spacing: -0.008em;
      margin-bottom: 24px;
    }
    .now-card-large p { color: #a1a1a6; }
    .now-card .a-link { margin-top: auto; }

    .home-lab {
      background: #000;
      color: #f5f5f7;
      padding: 92px 0;
    }
    .home-lab-panel {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 56px;
      align-items: center;
    }
    .home-lab .eyebrow { color: #2997ff; }
    .home-lab h2 {
      font-size: 58px;
      font-weight: 600;
      line-height: 1.03;
      letter-spacing: -0.05em;
      color: #f5f5f7;
    }
    .home-lab-copy p {
      margin-top: 18px;
      max-width: 520px;
      font-size: 20px;
      line-height: 1.35;
      color: #a1a1a6;
      letter-spacing: -0.018em;
    }
    .home-lab-links {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }
    .home-lab .pill.ghost {
      border-color: #2997ff;
      color: #2997ff;
    }
    .home-lab .pill.ghost:hover {
      background: #2997ff;
      color: #fff;
    }
    .home-lab-preview {
      position: relative;
      display: block;
      min-height: 340px;
      border-radius: 24px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.08), transparent),
        linear-gradient(140deg, #1c4e3a 0%, #0d241c 65%, #050807 100%);
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.12);
    }
    .lab-court {
      position: absolute;
      inset: 12% 7% 10%;
      border: 2px solid rgba(255,255,255,0.58);
      transform: perspective(520px) rotateX(58deg);
      transform-origin: center bottom;
    }
    .lab-court::before,
    .lab-court::after,
    .lab-court-line {
      content: "";
      position: absolute;
      background: rgba(255,255,255,0.38);
    }
    .lab-court::before {
      top: 0; bottom: 0; left: 50%;
      width: 1px;
    }
    .lab-court::after {
      top: 48%; left: -6%; right: -6%;
      height: 2px;
      background: rgba(217,181,111,0.78);
    }
    .lab-top { top: 24%; left: 0; right: 0; height: 1px; }
    .lab-mid { top: 68%; left: 0; right: 0; height: 1px; }
    .lab-center { top: 0; bottom: 0; left: 24%; width: 1px; }
    .lab-arc {
      position: absolute;
      top: 10%;
      left: 22%;
      width: 52%;
      height: 32%;
      border-top: 2px dashed rgba(217,181,111,0.7);
      border-radius: 50%;
      transform: rotate(-8deg);
    }
    .lab-dot {
      position: absolute;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #f5f5f7;
      box-shadow: 0 0 18px rgba(255,255,255,0.55);
    }
    .d-a { left: 28%; top: 30%; opacity: 0.42; }
    .d-b { left: 40%; top: 18%; opacity: 0.72; }
    .d-c { left: 52%; top: 16%; opacity: 1; }
    .d-d { left: 65%; top: 27%; opacity: 0.58; }
    .lab-readout {
      position: absolute;
      right: 34px;
      bottom: 34px;
      display: flex;
      align-items: baseline;
      gap: 8px;
      padding: 14px 22px;
      border-radius: 18px;
      background: rgba(0,0,0,0.48);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      color: #f5f5f7;
    }
    .lab-number {
      font-size: 42px;
      font-weight: 700;
      letter-spacing: -0.04em;
      color: #d9b56f;
    }
    .lab-unit {
      font-size: 14px;
      color: rgba(245,245,247,0.72);
      letter-spacing: 0.02em;
    }

    .home-piano {
      background:
        radial-gradient(circle at 82% 20%, rgba(185, 130, 47, 0.16), transparent 34%),
        linear-gradient(180deg, #f8fafb 0%, #eef3f1 100%);
      padding: 92px 0;
      overflow: hidden;
    }

    .home-piano-panel {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 34px;
      align-items: stretch;
    }

    .home-piano-media {
      border-radius: 28px;
      overflow: hidden;
      background: #111;
      box-shadow: 0 28px 72px rgba(31, 35, 43, 0.18);
      min-height: 420px;
    }

    .home-piano-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 48% 50%;
    }

    .home-piano-copy {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      padding: clamp(34px, 5vw, 54px);
      background:
        linear-gradient(140deg, rgba(255,255,255,0.96), rgba(248,250,251,0.82) 54%, rgba(238,243,241,0.92)),
        var(--bg);
      border: 1px solid rgba(255,255,255,0.82);
      box-shadow: var(--glass-shadow);
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 420px;
    }

    .home-piano-copy > :not(.music-staff) {
      position: relative;
      z-index: 1;
    }

    .home-piano-copy h2 {
      max-width: 520px;
      font-size: clamp(36px, 4.8vw, 58px);
      font-weight: 600;
      line-height: 1.03;
      letter-spacing: -0.05em;
      color: var(--ink);
    }

    .home-piano-copy p {
      margin-top: 18px;
      max-width: 500px;
      font-size: 18px;
      line-height: 1.45;
      color: var(--ink-3);
      letter-spacing: -0.018em;
    }

    .home-piano-copy .a-link {
      margin-top: 28px;
      align-self: flex-start;
    }

    .music-staff {
      position: absolute;
      right: -84px;
      bottom: -58px;
      width: min(520px, 86%);
      color: rgba(29, 29, 31, 0.34);
      pointer-events: none;
    }

    .music-staff > path {
      fill: none;
      stroke: currentColor;
      stroke-width: 2.1;
      stroke-linecap: round;
    }

    .music-notes ellipse {
      fill: currentColor;
      stroke: none;
    }

    .music-notes path {
      fill: none;
      stroke: currentColor;
      stroke-width: 4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .timeline-section {
      background: var(--bg);
    }
    .timeline {
      margin-top: 48px;
      border-top: 1px solid var(--rule);
    }
    .timeline-row {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 40px;
      padding: 24px 0;
      border-bottom: 1px solid var(--rule);
    }
    .timeline-row > div {
      min-width: 0;
    }
    .timeline-year {
      font-size: 15px;
      font-weight: 600;
      color: var(--blue);
      letter-spacing: 0.01em;
    }
    .timeline-row h3 {
      font-size: 28px;
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--ink);
      margin-bottom: 8px;
      overflow-wrap: break-word;
    }
    .timeline-row p {
      max-width: 680px;
      font-size: 16px;
      line-height: 1.55;
      color: var(--ink-3);
      letter-spacing: -0.01em;
      overflow-wrap: break-word;
    }

    /* ── ABOUT ── */
    #about {
      background: var(--bg-2);
    }

    .about-body {
      max-width: 840px;
      margin: 48px auto 0;
      font-size: 17px;
      line-height: 1.6;
      color: var(--ink-2);
    }
    .about-body p { margin-bottom: 1.3em; }
    .about-body p:last-child { margin-bottom: 0; }
    .about-body strong { font-weight: 600; color: var(--ink); }

    /* By the numbers strip */
    .stats {
      margin-top: 64px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
    }
    .stat {
      padding: 28px 16px;
      border-right: 1px solid var(--rule);
      text-align: center;
    }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-size: clamp(40px, 4.6vw, 56px);
      font-weight: 600;
      line-height: 1;
      letter-spacing: -0.035em;
      color: var(--ink);
    }
    .stat-num .unit {
      font-size: 0.4em;
      font-weight: 500;
      color: var(--ink-3);
      margin-left: 4px;
      letter-spacing: 0;
    }
    .stat-label {
      margin-top: 12px;
      font-size: 13px;
      color: var(--ink-3);
      line-height: 1.4;
    }

    /* ── Section pattern: badminton, stringing, photography, projects, life ── */

    /* Feature image (full-width, rounded) */
    .feature-img {
      margin: 56px auto 0;
      width: 100%;
      max-width: 1200px;
      padding: 0 22px;
    }
    .feature-img img {
      width: 100%;
      border-radius: 18px;
      display: block;
    }

    /* Two-column reading area (after section header) */
    .read {
      margin-top: 56px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      font-size: 17px;
      line-height: 1.6;
      color: var(--ink-2);
    }
    .read p { margin-bottom: 1.3em; }
    .read p:last-child { margin-bottom: 0; }
    .read strong { font-weight: 600; color: var(--ink); }

    .story-grid {
      width: min(1120px, calc(100% - 44px));
      margin: clamp(38px, 5vw, 58px) auto 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .story-grid.two {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      max-width: 960px;
    }

    .story-card {
      position: relative;
      isolation: isolate;
      min-height: 184px;
      padding: 26px;
      border: 1px solid rgba(220, 226, 224, 0.9);
      border-radius: 20px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 249, 0.62)),
        rgba(255, 255, 255, 0.72);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 20px 54px rgba(21, 34, 31, 0.07);
      overflow: hidden;
    }

    .story-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(circle at 88% 12%, rgba(11, 118, 93, 0.1), transparent 38%),
        radial-gradient(circle at 0% 100%, rgba(185, 130, 47, 0.08), transparent 36%);
      pointer-events: none;
    }

    .story-kicker,
    .story-card > span {
      display: block;
      margin-bottom: 15px;
      color: var(--mint);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: 0.01em;
    }

    .story-card h3 {
      color: var(--ink);
      font-size: clamp(22px, 2vw, 28px);
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 12px;
    }

    .story-card p {
      color: var(--ink-3);
      font-size: 15px;
      line-height: 1.55;
      letter-spacing: -0.008em;
    }

    .story-card strong {
      color: var(--ink);
      font-weight: 600;
    }

    .story-card.dark {
      border-color: rgba(255, 255, 255, 0.13);
      background:
        radial-gradient(circle at 86% 12%, rgba(11, 118, 93, 0.23), transparent 38%),
        linear-gradient(145deg, #12221c 0%, #06100d 68%);
      color: #f5f5f7;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    }

    .story-card.dark h3,
    .story-card.dark strong {
      color: #f5f5f7;
    }

    .story-card.dark p {
      color: rgba(245, 245, 247, 0.72);
    }

    .story-card.dark .story-kicker,
    .story-card.dark > span {
      color: #d9b56f;
    }

    .story-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .story-pills span,
    .story-pills a {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 7px 11px;
      border-radius: 999px;
      border: 1px solid rgba(11, 118, 93, 0.16);
      background: rgba(11, 118, 93, 0.07);
      color: var(--mint);
      font-size: 13px;
      font-weight: 650;
      line-height: 1;
      text-decoration: none;
    }

    .story-card.dark .story-pills span,
    .story-card.dark .story-pills a {
      border-color: rgba(217, 181, 111, 0.24);
      background: rgba(217, 181, 111, 0.1);
      color: #d9b56f;
    }

    .story-list {
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .story-list li {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-top: 10px;
      border-top: 1px solid rgba(134, 134, 139, 0.16);
      color: var(--ink-3);
      font-size: 14px;
      line-height: 1.35;
    }

    .story-list b {
      color: var(--ink);
      font-weight: 650;
      white-space: nowrap;
    }

    .story-card.dark .story-list li {
      border-top-color: rgba(255, 255, 255, 0.12);
      color: rgba(245, 245, 247, 0.74);
    }

    .story-card.dark .story-list b {
      color: #f5f5f7;
    }

    /* ── BADMINTON ── */
    #badminton .feature-img img {
      aspect-ratio: 4/3;
      object-fit: cover;
      max-height: 80vh;
    }

    .sport-photo-grid {
      width: min(1120px, calc(100% - 44px));
      margin: 56px auto 0;
      display: grid;
      grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr);
      gap: 18px;
      align-items: stretch;
    }

    .sport-photo-main {
      margin: 0;
      overflow: hidden;
      border-radius: 24px;
      background: #111816;
      box-shadow: 0 24px 70px rgba(18, 31, 28, 0.11);
    }

    .sport-photo-main img {
      display: block;
      width: 100%;
      height: clamp(520px, 62vw, 720px);
      min-height: 0;
      max-height: none;
      object-fit: cover;
      object-position: center 42%;
    }

    .sport-photo-main figcaption {
      padding: 16px 18px 18px;
      color: rgba(245, 245, 247, 0.76);
      background: #111816;
      font-size: 14px;
      line-height: 1.45;
    }

    .sport-photo-notes {
      display: grid;
      grid-template-rows: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .sport-photo-notes article {
      display: grid;
      align-content: center;
      min-height: 0;
      padding: 22px;
      border-radius: 20px;
      border: 1px solid rgba(220, 226, 224, 0.9);
      background:
        radial-gradient(circle at 88% 10%, rgba(11, 118, 93, 0.1), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 249, 0.68));
      box-shadow: 0 20px 54px rgba(21, 34, 31, 0.07);
    }

    .sport-photo-notes span {
      margin-bottom: 8px;
      color: var(--mint);
      font-size: 13px;
      font-weight: 760;
    }

    .sport-photo-notes strong {
      color: var(--ink);
      font-size: clamp(22px, 2.1vw, 30px);
      line-height: 1.08;
      letter-spacing: -0.035em;
    }

    .sport-photo-notes p {
      margin: 10px 0 0;
      color: var(--ink-3);
      font-size: 14px;
      line-height: 1.42;
    }

    .quote {
      max-width: 820px;
      margin: clamp(48px, 6vw, 80px) auto 0;
      padding: 0 22px;
      text-align: center;
    }
    .quote-text {
      font-size: clamp(22px, 2.4vw, 32px);
      font-weight: 500;
      line-height: 1.25;
      letter-spacing: -0.025em;
      color: var(--ink);
    }
    .quote-cite {
      margin-top: 18px;
      font-size: 13px;
      color: var(--ink-4);
    }

    /* ── STRINGING ── */
    #stringing { background: var(--bg-2); }

    .pricing {
      margin: 52px auto 0;
      max-width: 920px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      padding: 0 22px;
    }

    .price-card {
      background: var(--bg);
      border-radius: 18px;
      padding: 32px;
      border: 1px solid var(--rule-2);
    }

    .price-card h3 {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--blue);
      margin-bottom: 22px;
      text-transform: uppercase;
    }

    .price-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--rule-2);
      align-items: baseline;
    }
    .price-row:last-child { border-bottom: none; }
    .price-row.coming .price-name { color: var(--ink-4); }
    .price-row.coming .price-name::after {
      content: ' · soon';
      font-size: 12px;
      color: var(--ink-4);
      letter-spacing: -0.005em;
    }
    .price-row.coming .price-amt { color: var(--ink-4); }

    .price-name {
      font-size: 17px;
      font-weight: 400;
      color: var(--ink);
      letter-spacing: -0.022em;
    }
    .price-amt {
      font-size: 17px;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -0.022em;
    }

    .promises {
      margin: 48px auto 0;
      max-width: 920px;
      padding: 0 22px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }
    .promise {
      text-align: center;
    }
    .promise-num {
      font-size: 13px;
      font-weight: 600;
      color: var(--blue);
      letter-spacing: 0.01em;
      margin-bottom: 12px;
    }
    .promise-title {
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.022em;
      margin-bottom: 6px;
    }
    .promise-text {
      font-size: 14px;
      color: var(--ink-3);
      line-height: 1.45;
      letter-spacing: -0.005em;
    }

    .stringing-photo-row {
      margin: 64px auto 0;
      max-width: 1200px;
      padding: 0 22px;
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 18px;
    }
    .stringing-photo {
      margin: 0;
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      background: #f5f1e8;
      box-shadow: 0 20px 56px rgba(18, 31, 28, 0.08);
    }
    .stringing-photo img {
      display: block;
      width: 100%;
      height: clamp(420px, 42vw, 580px);
      object-fit: cover;
    }

    .stringing-photo.flyer-photo img {
      object-fit: contain;
      padding: 16px;
      background: #f8f3ea;
    }

    .stringing-photo figcaption {
      display: none;
    }

    #stringing .stringing-photo-row + .stringing-story {
      margin-top: clamp(42px, 5vw, 64px);
    }

    #stringing .stringing-story + .pricing {
      margin-top: clamp(42px, 5vw, 64px);
    }

    .stringing-photo.ph {
      display: flex; align-items: center; justify-content: center;
      text-align: center; padding: 16px;
    }
    .stringing-photo.ph span {
      font-size: 13px;
      color: var(--ink-4);
      letter-spacing: -0.005em;
    }

    /* ── PHOTOGRAPHY ── */
    .gallery {
      margin: 64px auto 0;
      max-width: 1200px;
      padding: 0 22px;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 20px;
    }
    .shot {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
    }
    .shot-img {
      width: 100%;
      border-radius: 18px;
      overflow: hidden;
    }
    .shot-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .shot:hover .shot-img img { transform: scale(1.025); }

    .shot-meta {
      margin-top: 18px;
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 16px;
    }
    .shot-title {
      font-size: 19px;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -0.022em;
    }
    .shot-award {
      font-size: 12px;
      color: var(--blue);
      font-weight: 600;
      letter-spacing: 0.01em;
      text-align: right;
      flex-shrink: 0;
    }
    .shot-award span {
      display: block;
      color: var(--ink-4);
      font-weight: 400;
      margin-top: 2px;
      letter-spacing: -0.005em;
    }

    .g-a1 { grid-column: span 7; }
    .g-a1 .shot-img { aspect-ratio: 3/2; }
    .g-a2 { grid-column: span 5; }
    .g-a2 .shot-img { aspect-ratio: 4/5; }
    .g-a3 { grid-column: span 5; }
    .g-a3 .shot-img { aspect-ratio: 4/5; }
    .g-a4 { grid-column: span 7; }
    .g-a4 .shot-img { aspect-ratio: 3/2; }

    .gallery-sub {
      max-width: 1200px;
      margin: 60px auto 0;
      padding: 0 22px;
    }
    .gallery-sub-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--rule);
      margin-bottom: 28px;
    }
    .gallery-sub-head h3 {
      font-size: 21px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.022em;
    }
    .gallery-sub-head span {
      font-size: 13px;
      color: var(--ink-4);
    }
    .gallery-sub-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
    }
    .gallery-sub-grid .shot { font-size: 14px; }
    .gallery-sub-grid .shot-title { font-size: 15px; }
    .gallery-sub-grid .shot-meta { margin-top: 12px; }
    .gs-1 { grid-column: span 3; }
    .gs-1 .shot-img { aspect-ratio: 3/4; }
    .gs-2 { grid-column: span 4; }
    .gs-2 .shot-img { aspect-ratio: 16/11; }
    .gs-3 { grid-column: span 4; }
    .gs-3 .shot-img { aspect-ratio: 3/2; }
    .gs-4 { grid-column: span 4; }
    .gs-4 .shot-img { aspect-ratio: 3/2; }
    .gs-5 { grid-column: span 4; }
    .gs-5 .shot-img { aspect-ratio: 3/2; }

    /* ── PROJECTS (dark section) ── */
    #projects {
      background: #000;
      color: #f5f5f7;
    }
    #projects .h-section { color: #f5f5f7; }
    #projects .h-sub { color: #a1a1a6; }
    #projects .eyebrow { color: #2997ff; }

    .projects-grid {
      margin: 64px auto 0;
      max-width: 1200px;
      padding: 0 22px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    .pcard-feature {
      grid-column: 1 / -1;
      display: grid !important;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 42px;
      align-items: stretch;
      min-height: 0;
    }
    .pcard-feature .pcard-tag,
    .pcard-feature .pcard-title,
    .pcard-feature .pcard-body,
    .pcard-feature .project-mini-steps,
    .pcard-feature .pcard-cta-row,
    .pcard-feature .pcard-foot { grid-column: 1; }
    .pcard-feature .pcard-preview { grid-column: 2; grid-row: 1 / span 5; }
    .pcard-feature .pcard-title {
      font-size: 34px;
      letter-spacing: -0.03em;
    }
    .pcard-feature .pcard-body {
      font-size: 16px;
      line-height: 1.6;
    }
    .pcard-cta-row {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-top: 8px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }
    .pcard-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #2997ff;
      color: #fff;
      font-size: 15px;
      font-weight: 500;
      padding: 12px 22px;
      border-radius: 980px;
      text-decoration: none;
      transition: background 0.18s;
      line-height: 1;
    }
    .pcard-cta:hover { background: #0077ed; }
    .pcard-cta-note {
      font-size: 13px;
      color: #6e6e73;
      letter-spacing: -0.005em;
    }
    .pcard-preview {
      position: relative;
      display: block;
      border-radius: 18px;
      overflow: hidden;
      align-self: stretch;
      min-height: 240px;
      text-decoration: none;
    }
    .pcard-preview-svg {
      width: 100%;
      height: 100%;
      display: block;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .pcard-preview:hover .pcard-preview-svg { transform: scale(1.03); }
    .pcard-preview-meter {
      position: absolute;
      bottom: 22px;
      right: 22px;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 10px 18px;
      border-radius: 16px;
      display: flex;
      align-items: baseline;
      gap: 6px;
      color: #f5f5f7;
    }
    .pcard-preview-num {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #d9b56f;
    }
    .pcard-preview-unit {
      font-size: 12px;
      color: rgba(245, 245, 247, 0.7);
      letter-spacing: 0.04em;
    }
    .pcard {
      background: #1d1d1f;
      border-radius: 22px;
      padding: 34px;
      display: flex;
      flex-direction: column;
      min-height: 282px;
    }
    .pcard-tag {
      font-size: 13px;
      font-weight: 600;
      color: #2997ff;
      letter-spacing: 0.01em;
      margin-bottom: 14px;
    }
    .pcard-title {
      font-size: 27px;
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: -0.025em;
      color: #f5f5f7;
      margin-bottom: 16px;
    }
    .pcard-body {
      font-size: 15px;
      line-height: 1.55;
      color: #a1a1a6;
      margin-bottom: 24px;
    }
    .pcard-body strong { color: #f5f5f7; font-weight: 500; }
    .pcard .story-pills {
      margin-top: -8px;
      margin-bottom: 24px;
    }
    .pcard .story-pills span {
      border-color: rgba(41, 151, 255, 0.22);
      background: rgba(41, 151, 255, 0.1);
      color: #58a6ff;
    }
    .pcard .story-list {
      margin-top: -2px;
      margin-bottom: 24px;
    }
    .pcard .story-list li {
      border-top-color: rgba(255, 255, 255, 0.12);
      color: #a1a1a6;
    }
    .pcard .story-list b {
      color: #f5f5f7;
    }
    .project-mini-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 4px 0 22px;
    }
    .project-mini-steps span {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 7px 11px;
      border-radius: 999px;
      border: 1px solid rgba(217, 181, 111, 0.24);
      background: rgba(217, 181, 111, 0.09);
      color: #d9b56f;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0;
      line-height: 1;
    }
    .pcard-foot {
      margin-top: auto;
      font-size: 13px;
      color: #6e6e73;
    }

    .case-study {
      max-width: 1200px;
      margin: 68px auto 0;
      padding: 48px 22px 0;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .case-head {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    .case-head h3 {
      font-size: 48px;
      font-weight: 600;
      line-height: 1.06;
      letter-spacing: -0.045em;
      color: #f5f5f7;
    }
    .case-head p {
      margin-top: 14px;
      font-size: 20px;
      line-height: 1.35;
      color: #a1a1a6;
      letter-spacing: -0.018em;
    }
    .case-grid {
      margin-top: 44px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .case-step {
      min-height: 190px;
      border-radius: 22px;
      padding: 30px;
      background: #1d1d1f;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .case-step span {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #2997ff;
      margin-bottom: 18px;
    }
    .case-step h4 {
      font-size: 24px;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: #f5f5f7;
      margin-bottom: 12px;
    }
    .case-step p {
      font-size: 15px;
      line-height: 1.55;
      color: #a1a1a6;
      letter-spacing: -0.008em;
    }
    .case-outcome {
      margin-top: 18px;
      display: grid;
      grid-template-columns: 0.7fr 1.3fr;
      gap: 18px;
      align-items: center;
      border-radius: 22px;
      padding: 34px;
      background:
        linear-gradient(120deg, rgba(41,151,255,0.18), transparent 45%),
        #101010;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .case-metric {
      display: block;
      font-size: 64px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.055em;
      color: #d9b56f;
    }
    .case-unit {
      display: block;
      margin-top: 8px;
      font-size: 13px;
      color: #a1a1a6;
    }
    .case-outcome p {
      font-size: 18px;
      line-height: 1.45;
      color: #d2d2d7;
      letter-spacing: -0.015em;
    }

    /* ── LIFE ── */
    .life-grid {
      margin: 52px auto 0;
      max-width: 860px;
      padding: 0 22px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .life-card {
      background: var(--bg-2);
      border-radius: 18px;
      padding: 30px;
    }
    .life-card h3 {
      font-size: 22px;
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.025em;
      color: var(--ink);
      margin-bottom: 14px;
    }
    .life-card p {
      font-size: 15px;
      line-height: 1.55;
      color: var(--ink-3);
    }
    .life-card p strong { color: var(--ink); font-weight: 500; }

    .quick-grid {
      max-width: var(--max-wide);
      grid-template-columns: repeat(4, 1fr);
    }

    .quick-grid .life-card {
      min-height: 178px;
    }

    /* ── PIANO ── */
    .piano-page {
      background:
        radial-gradient(circle at 78% 18%, rgba(185, 130, 47, 0.18), transparent 30%),
        radial-gradient(circle at 8% 34%, rgba(11, 118, 93, 0.11), transparent 30%),
        linear-gradient(180deg, #f8fafb 0%, #eef3f1 72%, #f8fafb 100%);
      padding-top: clamp(140px, 14vw, 200px);
      overflow: hidden;
    }

    .piano-page .container,
    .piano-hero-card,
    .piano-detail-grid {
      position: relative;
      z-index: 1;
    }

    .music-page-staff {
      position: absolute;
      top: 84px;
      right: max(-180px, calc((100vw - var(--max-wide)) / 2 - 260px));
      width: min(760px, 72vw);
      color: rgba(29, 29, 31, 0.26);
      pointer-events: none;
      z-index: 0;
    }

    .music-page-staff > path {
      fill: none;
      stroke: currentColor;
      stroke-width: 2.4;
      stroke-linecap: round;
    }

    .music-page-staff .music-notes ellipse {
      fill: currentColor;
    }

    .music-page-staff .music-notes path {
      fill: none;
      stroke: currentColor;
      stroke-width: 5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .piano-hero-card {
      max-width: 1200px;
      width: min(calc(100% - 48px), 1200px);
      margin: 64px auto 0;
      padding: 18px;
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 18px;
      align-items: stretch;
      border-radius: 30px;
      overflow: hidden;
      background:
        linear-gradient(140deg, rgba(255,255,255,0.94), rgba(248,250,251,0.72) 48%, rgba(229,236,233,0.86));
      border: 1px solid rgba(255,255,255,0.86);
      box-shadow: 0 30px 90px rgba(31, 35, 43, 0.16), inset 0 1px 0 rgba(255,255,255,0.76);
    }

    .piano-copy-block {
      min-width: 0;
      padding: clamp(26px, 4vw, 44px);
      align-self: center;
    }

    .piano-kicker {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--blue);
      margin-bottom: 18px;
    }

    .piano-copy-block h3 {
      font-size: clamp(34px, 4.5vw, 54px);
      font-weight: 600;
      line-height: 1.04;
      letter-spacing: 0;
      color: var(--ink);
      max-width: 560px;
      overflow-wrap: break-word;
    }

    .piano-copy-block p {
      margin-top: 18px;
      max-width: 540px;
      font-size: 17px;
      line-height: 1.55;
      color: var(--ink-3);
      letter-spacing: 0;
      overflow-wrap: break-word;
    }

    .piano-photo-card {
      position: relative;
      min-width: 0;
      max-width: 100%;
      min-height: 430px;
      aspect-ratio: 16 / 9;
      border-radius: 24px;
      overflow: hidden;
      background: #111;
    }

    .piano-photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 48% center;
    }

    .piano-photo-card figcaption {
      position: absolute;
      left: 18px;
      bottom: 18px;
      max-width: calc(100% - 36px);
      padding: 9px 13px;
      border-radius: 999px;
      background: rgba(5, 9, 8, 0.54);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      color: rgba(255,255,255,0.82);
      font-size: 12px;
      letter-spacing: -0.005em;
    }

    .piano-detail-grid {
      max-width: 1120px;
      margin: 22px auto 0;
      padding: 0 22px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .piano-detail-card {
      min-height: 220px;
      border-radius: 22px;
      padding: 28px;
      background: var(--bg);
      border: 1px solid var(--rule-2);
    }

    .piano-detail-card span {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--blue);
      margin-bottom: 18px;
    }

    .piano-detail-card h3 {
      font-size: 24px;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--ink);
      margin-bottom: 12px;
    }

    .piano-detail-card p {
      font-size: 15px;
      line-height: 1.55;
      color: var(--ink-3);
      letter-spacing: -0.008em;
    }

    .aspire {
      margin: 64px auto 0;
      max-width: 920px;
      padding: 48px 44px;
      background: var(--ink);
      color: var(--bg);
      border-radius: 22px;
      text-align: center;
    }
    .aspire-text {
      font-size: 28px;
      font-weight: 500;
      line-height: 1.25;
      letter-spacing: -0.025em;
      color: #f5f5f7;
      max-width: 720px;
      margin: 0 auto;
    }
    .aspire-text strong { color: #fff; font-weight: 600; }
    .aspire-cite {
      margin-top: 18px;
      font-size: 13px;
      color: #86868b;
    }

    /* ── CONTACT ── */
    #contact {
      text-align: center;
    }
    .contact-actions {
      margin-top: 40px;
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .contact-meta {
      margin-top: 40px;
      font-size: 14px;
      color: var(--ink-4);
    }
    .contact-meta strong { color: var(--ink-2); font-weight: 500; }

    .contact-paths {
      text-align: left;
      margin-top: 48px;
    }

    .stringing-faq {
      max-width: 920px;
      margin: 64px auto 0;
      padding: 0 22px;
    }
    .faq-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--rule);
      margin-bottom: 18px;
    }
    .faq-head h3 {
      font-size: 38px;
      font-weight: 600;
      line-height: 1.05;
      letter-spacing: -0.04em;
      color: var(--ink);
    }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .faq-grid details {
      background: var(--bg);
      border: 1px solid var(--rule-2);
      border-radius: 18px;
      padding: 20px 22px;
    }
    .faq-grid summary {
      cursor: pointer;
      list-style: none;
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.022em;
    }
    .faq-grid summary::-webkit-details-marker { display: none; }
    .faq-grid summary::after {
      content: "+";
      float: right;
      color: var(--ink-4);
      font-weight: 400;
    }
    .faq-grid details[open] summary::after { content: "–"; }
    .faq-grid p {
      margin-top: 12px;
      font-size: 15px;
      line-height: 1.5;
      color: var(--ink-3);
      letter-spacing: -0.008em;
    }

    /* Liquid glass-inspired card material */
    .proof-card,
    .now-card,
    .price-card,
    .promise,
    .life-card,
    .piano-detail-card,
    .faq-grid details {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: var(--glass-light);
      border: 1px solid var(--glass-light-border);
      box-shadow: var(--glass-shadow);
      transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                  border-color 0.28s ease,
                  box-shadow 0.28s ease;
    }

    .promise {
      min-height: 150px;
      padding: 24px 20px;
      border-radius: 22px;
    }

    .proof-card::before,
    .now-card::before,
    .price-card::before,
    .promise::before,
    .life-card::before,
    .piano-detail-card::before,
    .faq-grid details::before,
    .pcard::before,
    .case-step::before,
    .case-outcome::before,
    .aspire::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08) 34%, transparent 58%),
        radial-gradient(120% 80% at 18% 0%, rgba(255, 255, 255, 0.64), transparent 46%);
      opacity: 0.14;
    }

    .proof-card::after,
    .now-card::after,
    .price-card::after,
    .promise::after,
    .life-card::after,
    .piano-detail-card::after,
    .faq-grid details::after,
    .pcard::after,
    .case-step::after,
    .case-outcome::after,
    .aspire::after {
      content: "";
      position: absolute;
      inset: 1px;
      z-index: 0;
      pointer-events: none;
      border-radius: inherit;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), inset 0 -28px 60px rgba(255, 255, 255, 0.08);
    }

    .proof-card > *,
    .now-card > *,
    .price-card > *,
    .promise > *,
    .life-card > *,
    .piano-detail-card > *,
    .faq-grid details > *,
    .pcard > *,
    .case-step > *,
    .case-outcome > *,
    .aspire > * {
      position: relative;
      z-index: 1;
    }

    .proof-card-main,
    .now-card-large,
    .pcard,
    .case-step,
    .case-outcome,
    .aspire {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: var(--glass-dark);
      border: 1px solid var(--glass-dark-border);
      box-shadow: var(--glass-shadow-dark);
    }

    .proof-card-main::before,
    .now-card-large::before,
    .pcard::before,
    .case-step::before,
    .case-outcome::before,
    .aspire::before {
      opacity: 0.14;
    }

    .proof-card-main p,
    .now-card-large p,
    .pcard-body,
    .case-step p {
      color: #d2d2d7;
    }

    .case-outcome {
      background:
        linear-gradient(120deg, rgba(41, 151, 255, 0.22), transparent 42%),
        linear-gradient(145deg, rgba(34, 34, 38, 0.82), rgba(8, 8, 10, 0.72));
    }

    /* Editorial refresh */
    .proof-section {
      background:
        linear-gradient(180deg, rgba(248, 250, 251, 0.3), #f8fafb 28%, #f3f7f6 100%);
    }
    .now-section,
    #about,
    #stringing,
    #life {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(238, 243, 241, 0.78));
    }
    .home-lab,
    #projects {
      background:
        linear-gradient(145deg, #07110d 0%, #0d1c15 46%, #030605 100%);
    }
    .proof-grid,
    .now-grid,
    .projects-grid,
    .case-grid,
    .life-grid,
    .pricing,
    .faq-grid {
      gap: 18px;
    }
    .proof-card,
    .now-card,
    .price-card,
    .promise,
    .life-card,
    .faq-grid details,
    .pcard,
    .case-step,
    .case-outcome {
      border-radius: 10px;
    }
    .proof-card,
    .now-card,
    .price-card,
    .life-card,
    .faq-grid details {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,249,248,0.9));
      border-color: rgba(11, 118, 93, 0.12);
      box-shadow: 0 18px 36px rgba(30, 45, 40, 0.08);
    }
    .proof-card-main,
    .now-card-large,
    .pcard,
    .case-step {
      background:
        linear-gradient(145deg, rgba(17, 31, 25, 0.98), rgba(5, 9, 8, 0.98));
      border-color: rgba(255, 255, 255, 0.12);
    }
    .proof-card-main,
    .now-card-large {
      box-shadow: 0 28px 64px rgba(5, 9, 8, 0.28);
    }
    .now-card-large h3 {
      color: #f5f5f7;
    }
    .now-card-large p {
      color: rgba(245, 245, 247, 0.76);
    }
    .proof-kicker,
    .now-label,
    .pcard-tag,
    .case-step span,
    .timeline-year {
      color: var(--gold);
    }
    .proof-num {
      color: var(--blue);
      letter-spacing: -0.055em;
    }
    .proof-card:nth-child(3) .proof-num { color: var(--rose); }
    .proof-card:nth-child(4) .proof-num { color: var(--gold); }
    .now-card h3,
    .life-card h3,
    .price-name,
    .price-amt {
      color: #17211a;
    }
    .now-card-large h3 {
      color: #f5f5f7;
    }
    .now-card-large p {
      color: rgba(245, 245, 247, 0.76);
    }
    .home-lab-panel {
      min-height: 430px;
    }
    .home-lab-preview,
    .pcard-preview {
      border-radius: 12px;
    }
    .timeline {
      border-top: none;
      margin-top: 42px;
    }
    .timeline-row {
      position: relative;
      grid-template-columns: 92px 1fr;
      gap: 34px;
      padding: 26px 0 26px 24px;
      border-bottom: 1px solid rgba(11, 118, 93, 0.16);
    }
    .timeline-row::before {
      content: "";
      position: absolute;
      left: 0;
      top: 28px;
      bottom: 28px;
      width: 3px;
      background: linear-gradient(180deg, var(--blue), var(--gold));
      border-radius: 999px;
    }
    .shot-img,
    .feature-img img,
    .stringing-photo,
    .photo-lightbox img {
      border-radius: 12px;
    }
    .shot-img,
    .stringing-photo,
    .feature-img img {
      box-shadow: 0 20px 46px rgba(19, 27, 24, 0.11);
    }
    .aspire {
      border-radius: 10px;
      background:
        linear-gradient(135deg, rgba(11, 118, 93, 0.22), transparent 40%),
        #07110d;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 28px 64px rgba(5, 9, 8, 0.22);
    }

    .home-lab-preview,
    .pcard-preview,
    .pcard-preview-meter,
    .lab-readout,
    .photo-lightbox-close {
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
      backdrop-filter: saturate(150%) blur(18px);
      -webkit-backdrop-filter: saturate(150%) blur(18px);
    }

    .home-lab-preview::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04) 36%, transparent 62%),
        radial-gradient(80% 55% at 20% 0%, rgba(255, 255, 255, 0.24), transparent 56%);
      mix-blend-mode: screen;
    }

    .lab-court,
    .lab-readout {
      z-index: 1;
    }

    @media (hover: hover) {
      .proof-card:hover,
      .now-card:hover,
      .price-card:hover,
      .promise:hover,
      .life-card:hover,
      .piano-detail-card:hover,
      .faq-grid details:hover,
      .pcard:hover,
      .case-step:hover,
      .case-outcome:hover {
        border-color: rgba(255, 255, 255, 0.92);
        box-shadow: 0 24px 70px rgba(31, 35, 43, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.75);
      }

      .proof-card-main:hover,
      .now-card-large:hover,
      .pcard:hover,
      .case-step:hover,
      .case-outcome:hover {
        border-color: rgba(255, 255, 255, 0.26);
        box-shadow: 0 30px 88px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.22);
      }
    }

    @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
      .proof-card,
      .now-card,
      .price-card,
      .promise,
      .life-card,
      .piano-detail-card,
      .faq-grid details {
        background: rgba(255, 255, 255, 0.92);
      }

      .proof-card-main,
      .now-card-large,
      .pcard,
      .case-step,
      .case-outcome,
      .aspire {
        background: #1d1d1f;
      }
    }

    body.no-scroll { overflow: hidden; }
    .photo-lightbox {
      position: fixed;
      inset: 0;
      z-index: 500;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 42px;
      background: rgba(0,0,0,0.86);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }
    .photo-lightbox.open { display: flex; }
    .photo-lightbox-figure {
      width: min(1120px, 100%);
      max-height: 92vh;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 28px;
      align-items: end;
    }
    .photo-lightbox img {
      width: 100%;
      max-height: 86vh;
      object-fit: contain;
      border-radius: 18px;
      background: #050505;
    }
    .photo-lightbox figcaption {
      color: #f5f5f7;
      padding-bottom: 8px;
    }
    .photo-lightbox-meta {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #2997ff;
      letter-spacing: 0.01em;
      margin-bottom: 12px;
    }
    .photo-lightbox-title {
      display: block;
      font-size: 36px;
      line-height: 1.06;
      letter-spacing: -0.04em;
      margin-bottom: 14px;
    }
    .photo-lightbox-story {
      display: block;
      font-size: 15px;
      line-height: 1.55;
      color: #a1a1a6;
      letter-spacing: -0.008em;
    }
    .photo-lightbox-close {
      position: fixed;
      top: 18px;
      right: 18px;
      width: 44px;
      height: 44px;
      border: none;
      border-radius: 50%;
      background: rgba(255,255,255,0.14);
      color: #f5f5f7;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
    }
    .photo-lightbox-close:hover { background: rgba(255,255,255,0.22); }

    /* ── FOOTER ── */
    footer {
      background: var(--bg-2);
      padding: 28px 22px 24px;
      font-size: 12px;
      color: var(--ink-4);
      line-height: 1.5;
      border-top: 1px solid var(--rule-2);
    }
    .foot-inner {
      max-width: var(--max-wide);
      margin: 0 auto;
    }
    .foot-top {
      padding-bottom: 18px;
      border-bottom: 1px solid var(--rule-2);
      margin-bottom: 14px;
    }
    .foot-bottom {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }
    .foot-links {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
    }
    .foot-links a {
      color: var(--ink-4);
      text-decoration: none;
    }
    .foot-links a:hover { color: var(--ink-2); }

    /* ── Reveal animations ── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .d1 { transition-delay: 0.08s; }
    .d2 { transition-delay: 0.16s; }
    .d3 { transition-delay: 0.24s; }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      :root {
        --max: 760px;
        --max-wide: 820px;
      }
      section { padding: 72px 0; }
      .h-display { font-size: 44px; }
      .h-section { font-size: 38px; }
      .h-sub { font-size: 18px; }
      #hero {
        padding-top: 106px;
        padding-bottom: 64px;
      }
      .hero-name { font-size: 62px; }
      .hero-sub { font-size: 19px; }
      .hero-photo {
        margin-top: 38px;
      }
      .hero-photo img {
        height: 300px;
      }
      .proof-section {
        padding-top: 36px;
        padding-bottom: 60px;
      }
      .proof-grid { grid-template-columns: 1fr 1fr; }
      .proof-card-main { grid-column: 1 / -1; }
      .proof-grid .proof-card:nth-child(n+4) {
        grid-column: auto;
      }
      .proof-card {
        min-height: 160px;
        padding: 26px;
      }
      .proof-card h2 { font-size: 32px; }
      .proof-num { font-size: 46px; }
      .now-grid { grid-template-columns: 1fr 1fr; }
      .now-card-large { grid-column: 1 / -1; }
      .now-grid { margin-top: 44px; }
      .now-card {
        min-height: 210px;
        padding: 26px;
      }
      .now-card h3 { font-size: 25px; }
      .home-lab {
        padding: 72px 0;
      }
      .home-lab-panel { grid-template-columns: 1fr; }
      .home-lab-panel { gap: 36px; }
      .home-lab h2 { font-size: 44px; }
      .home-lab-copy p { font-size: 18px; }
      .home-lab-preview { min-height: 320px; }
      .home-piano-panel,
      .piano-hero-card {
        grid-template-columns: 1fr;
      }
      .home-piano-media,
      .home-piano-copy,
      .piano-photo-card {
        min-height: 360px;
      }
      .piano-detail-grid,
      .quick-grid {
        grid-template-columns: 1fr 1fr;
      }
      .hero-photo {
        right: 22px;
        bottom: 22px;
        width: min(340px, calc(100% - 44px));
      }
      .timeline-row h3 { font-size: 25px; }
      .case-grid { grid-template-columns: 1fr; }
      .case-step { min-height: 0; }
      .case-head h3 { font-size: 40px; }
      .case-head p { font-size: 18px; }
      .case-outcome { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .photo-lightbox {
        align-items: flex-start;
        overflow: auto;
      }
      .photo-lightbox-figure {
        grid-template-columns: 1fr;
        gap: 18px;
        max-height: none;
      }
      .photo-lightbox img { max-height: 66vh; }
      .stats { grid-template-columns: 1fr 1fr; }
      .stat:nth-child(2) { border-right: none; }
      .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--rule); }
      .pricing { grid-template-columns: 1fr; }
      .promises { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
      .stringing-photo-row { grid-template-columns: 1fr; }
      .g-a1, .g-a2, .g-a3, .g-a4 { grid-column: span 12; }
      .g-a1 .shot-img, .g-a4 .shot-img { aspect-ratio: 3/2; }
      .g-a2 .shot-img, .g-a3 .shot-img { aspect-ratio: 4/5; }
      .gs-1, .gs-2, .gs-3, .gs-4 { grid-column: span 6; }
      .gs-1 .shot-img, .gs-2 .shot-img, .gs-3 .shot-img, .gs-4 .shot-img { aspect-ratio: 4/5; }
      .projects-grid { grid-template-columns: 1fr; }
      .pcard { min-height: 0; }
      .pcard-feature {
        grid-template-columns: 1fr;
      }
      .pcard-feature .pcard-preview {
        grid-column: 1;
        grid-row: auto;
        min-height: 220px;
        margin-bottom: 8px;
      }
      .life-grid { grid-template-columns: 1fr; }
      .quick-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
      nav {
        top: 10px;
        height: 54px;
        width: calc(100% - 28px);
        padding: 0 16px;
        overflow: visible;
      }
      .container,
      .container-wide {
        padding-left: 20px;
        padding-right: 20px;
      }
      section { padding: 58px 0; }
      .h-display { font-size: 36px; line-height: 1.08; }
      .h-section { font-size: 32px; line-height: 1.1; }
      .h-sub { font-size: 17px; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        z-index: 301;
        background: #fff;
        padding: 10px;
        border: 1px solid rgba(11, 118, 93, 0.12);
        border-radius: 22px;
        box-shadow: 0 26px 60px rgba(20, 32, 28, 0.24);
        align-items: stretch;
        gap: 2px;
      }
      .nav-links.open li { border-bottom: none; }
      .nav-links.open a {
        display: flex;
        align-items: center;
        min-height: 42px;
        font-size: 17px;
        font-weight: 500;
        padding: 10px 14px;
        border-radius: 14px;
        opacity: 1;
        color: var(--ink);
        background: transparent;
      }
      .nav-links.open a.active {
        color: var(--blue);
        background: rgba(11, 118, 93, 0.1);
      }
      .nav-links.open a:hover {
        color: var(--ink);
        background: transparent;
      }
      .nav-links.open a.active:hover {
        color: var(--blue);
        background: rgba(11, 118, 93, 0.1);
      }
      .nav-toggle[aria-expanded="true"] {
        color: var(--blue);
      }
      .nav-toggle { display: inline-block; }
      html { scroll-padding-top: 56px; }
      #hero {
        min-height: 620px;
        padding-top: 104px;
        padding-bottom: 108px;
      }
      .hero-name {
        font-size: 48px;
        line-height: 1.04;
      }
      .hero-sub {
        margin-top: 14px;
        font-size: 18px;
      }
      .hero-cta {
        margin-top: 28px;
        gap: 16px;
      }
      .hero-photo {
        right: 20px;
        bottom: 22px;
        width: calc(100% - 40px);
      }
      .hero-photo-cap { font-size: 12px; }
      .proof-section {
        padding-top: 22px;
        padding-bottom: 50px;
      }
      .proof-grid,
      .now-grid {
        grid-template-columns: 1fr;
      }
      .proof-card-main,
      .now-card-large {
        grid-column: auto;
      }
      .proof-grid .proof-card:nth-child(n+4) {
        grid-column: auto;
      }
      .now-grid .now-card:nth-child(4) {
        grid-column: auto;
      }
      .proof-card,
      .now-card {
        min-height: 0;
        padding: 24px;
        border-radius: 10px;
      }
      .proof-card h2 { font-size: 28px; }
      .proof-num {
        font-size: 42px;
        margin-bottom: 18px;
      }
      .now-grid { margin-top: 34px; }
      .now-card h3 { font-size: 24px; }
      .home-lab {
        padding: 60px 0;
      }
      .home-lab h2 { font-size: 36px; }
      .home-lab-copy p { font-size: 17px; }
      .home-lab-preview {
        min-height: 260px;
        border-radius: 10px;
      }
      .lab-readout {
        right: 18px;
        bottom: 18px;
        padding: 10px 16px;
      }
      .lab-number { font-size: 32px; }
      .lab-unit { font-size: 12px; }
      .home-lab-links { gap: 12px; }
      .home-piano {
        padding: 58px 0;
      }
      .home-piano-panel {
        gap: 18px;
      }
      .home-piano-media,
      .home-piano-copy {
        min-height: 0;
        border-radius: 20px;
      }
      .home-piano-media img {
        aspect-ratio: 4 / 3;
      }
      .home-piano-copy {
        padding: 26px;
      }
      .home-piano-copy h2 {
        font-size: 32px;
        line-height: 1.08;
      }
      .home-piano-copy p {
        font-size: 16px;
      }
      .music-staff {
        right: -142px;
        bottom: -42px;
        width: 360px;
      }
      .music-page-staff {
        top: 72px;
        right: -210px;
        width: 520px;
        color: rgba(29, 29, 31, 0.16);
      }
      .piano-page {
        padding-top: 108px;
      }
      .piano-hero-card {
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
        padding: 10px;
        border-radius: 22px;
        box-sizing: border-box;
        overflow: hidden;
      }
      .piano-copy-block {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 24px 18px;
      }
      .piano-copy-block h3 {
        max-width: 100%;
        font-size: 30px;
        line-height: 1.08;
      }
      .piano-copy-block p {
        max-width: 100%;
        font-size: 16px;
      }
      .piano-photo-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        min-height: 260px;
        border-radius: 16px;
      }
      .piano-photo-card figcaption {
        position: static;
        max-width: none;
        border-radius: 0;
        background: rgba(5, 9, 8, 0.82);
      }
      .piano-detail-grid,
      .quick-grid {
        grid-template-columns: 1fr;
      }
      .story-grid,
      .story-grid.two {
        width: calc(100% - 36px);
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 34px;
      }
      .story-card,
      .story-grid .story-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        min-height: 0;
        padding: 22px;
        border-radius: 14px;
      }
      .story-card h3 {
        font-size: 22px;
      }
      .story-list li {
        display: block;
      }
      .story-list b {
        display: block;
        margin-top: 4px;
      }
      .piano-detail-card {
        min-height: 0;
        padding: 24px;
        border-radius: 10px;
      }
      .timeline-row {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
        padding: 22px 0 22px 18px;
      }
      .timeline-row::before {
        top: 22px;
        bottom: 22px;
      }
      .timeline-year {
        display: block;
        line-height: 1.2;
      }
      .timeline { margin-top: 34px; }
      .timeline-row h3 {
        max-width: 100%;
        font-size: 23px;
      }
      .timeline-row p {
        max-width: 100%;
      }
      .about-body,
      .read {
        margin-top: 38px;
        font-size: 16px;
      }
      .pricing,
      .gallery,
      .projects-grid,
      .life-grid,
      .stringing-faq {
        margin-top: 38px;
      }
      .price-card,
      .life-card,
      .case-step,
      .pcard {
        padding: 24px;
        border-radius: 10px;
      }
      .pcard-title { font-size: 24px; }
      .pcard-feature .pcard-title { font-size: 27px; }
      .pcard-feature .pcard-body {
        font-size: 15px;
        line-height: 1.55;
      }
      .pcard-feature .pcard-preview {
        min-height: 180px;
      }
      .project-mini-steps {
        margin-bottom: 18px;
      }
      .case-study {
        margin-top: 48px;
        padding-top: 38px;
      }
      .case-head h3 { font-size: 34px; }
      .case-head p { font-size: 17px; }
      .case-grid { margin-top: 30px; }
      .case-outcome { padding: 24px; }
      .case-metric { font-size: 48px; }
      .case-outcome p { font-size: 16px; }
      .life-card h3 { font-size: 21px; }
      .aspire {
        margin: 46px 20px 0;
        padding: 32px 24px;
      }
      .aspire-text { font-size: 22px; }
      .faq-head {
        display: block;
      }
      .faq-head h3 { font-size: 30px; }
      .faq-grid summary { font-size: 16px; }
      .faq-head .eyebrow { margin-bottom: 10px; }
      .photo-lightbox { padding: 72px 16px 24px; }
      .photo-lightbox-title { font-size: 28px; }
      .hero-meta { gap: 8px 18px; }
      .hero-meta-item { font-size: 13px; }
      .promises { grid-template-columns: 1fr; gap: 28px; }
      .stats { grid-template-columns: 1fr 1fr; }
      .gs-1, .gs-2, .gs-3, .gs-4 { grid-column: span 12; }
      .gs-1 .shot-img, .gs-2 .shot-img, .gs-3 .shot-img, .gs-4 .shot-img { aspect-ratio: 4/3; }
      .gallery-sub-head { flex-direction: column; align-items: flex-start; gap: 6px; }
      .foot-bottom { flex-direction: column; gap: 8px; }
    }

    @media (max-width: 420px) {
      .timeline-row h3 { font-size: 22px; }
      .timeline-row p { font-size: 15px; }
      .stats { grid-template-columns: 1fr; }
      .stat { border-right: none; border-bottom: 1px solid var(--rule); }
      .stat:nth-child(2) { border-right: none; }
      .stat:nth-child(3), .stat:nth-child(4) { border-top: none; }
      .stat:last-child { border-bottom: none; }
    }

    /* Recent visual overrides */
    :root {
      --sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Helvetica Neue', Arial, sans-serif;
      --max: 980px;
      --max-wide: 1240px;
      --paper: #fbfcfb;
      --deep: #06100d;
      --mint: #0b765d;
      --amber: #b9822f;
    }

    body {
      background: #fbfcfb;
      letter-spacing: 0;
    }

    #about,
    #badminton,
    #stringing,
    #photography,
    #life,
    #contact,
    .piano-page {
      background: #fbfcfb !important;
    }

    body::before {
      content: none;
      display: none;
    }

    body,
    h1,
    h2,
    h3,
    h4,
    p,
    a,
    span,
    div,
    button {
      letter-spacing: 0;
    }

    main {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }

    nav {
      top: 14px;
      height: 64px;
      width: min(1220px, calc(100% - 40px));
      padding: 0 20px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38) 44%, rgba(255, 255, 255, 0.2)),
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.94), transparent 28%);
      border-color: rgba(255, 255, 255, 0.62);
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.86),
        inset 0 -1px 1px rgba(255, 255, 255, 0.2),
        0 18px 60px rgba(7, 17, 13, 0.22);
    }

    .nav-name {
      font-weight: 800;
    }

    .nav-links a {
      font-weight: 650;
      color: rgba(13, 17, 16, 0.86);
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--mint);
      background: rgba(255, 255, 255, 0.42);
    }

    section {
      padding: clamp(92px, 10vw, 154px) 0;
    }

    .h-display,
    .h-section {
      font-weight: 800;
      max-width: 100%;
    }

    .h-display {
      font-size: clamp(48px, 6vw, 88px);
      line-height: 0.98;
    }

    .h-section {
      font-size: clamp(40px, 5vw, 70px);
      line-height: 1;
    }

    .h-sub {
      font-size: clamp(17px, 1.7vw, 22px);
      line-height: 1.45;
    }

    .pill,
    .a-link,
    .pcard-cta {
      font-weight: 650;
    }

    #hero {
      min-height: clamp(680px, 92vh, 880px);
      padding-top: clamp(118px, 12vw, 168px);
      padding-bottom: clamp(82px, 9vw, 138px);
      background:
        radial-gradient(circle at 16% 24%, rgba(185, 130, 47, 0.24), transparent 30%),
        linear-gradient(90deg, rgba(3, 8, 6, 0.9) 0%, rgba(3, 8, 6, 0.64) 44%, rgba(3, 8, 6, 0.18) 100%),
        linear-gradient(180deg, rgba(3, 8, 6, 0.05), rgba(3, 8, 6, 0.56)),
        url("uploads/DSCF8850_20000.jpeg") center / cover no-repeat;
    }

    #hero::after {
      height: 34%;
      background: linear-gradient(180deg, transparent, rgba(251, 252, 251, 0.98));
    }

    .hero-shell {
      display: block;
      max-width: var(--max-wide);
      position: relative;
      z-index: 2;
    }

    #hero .container {
      max-width: var(--max-wide);
    }

    .hero-copy {
      max-width: 820px;
    }

    .hero-name {
      max-width: 1120px;
      font-size: clamp(58px, 8.2vw, 126px);
      font-weight: 800;
      line-height: 0.9;
      text-wrap: balance;
    }

    .hero-sub {
      max-width: 640px;
      margin-top: 24px;
      font-size: clamp(20px, 2.2vw, 30px);
      line-height: 1.24;
      color: rgba(255, 255, 255, 0.88);
    }

    .hero-meta {
      color: rgba(255, 255, 255, 0.74);
    }

    #hero .hero-cta .a-link:first-child {
      background: rgba(255, 255, 255, 0.92);
      color: #06100d;
      border-color: rgba(255, 255, 255, 0.72);
    }

    #hero .hero-cta .a-link:last-child {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .proof-section {
      background: #fbfcfb;
      padding-top: clamp(76px, 8vw, 128px);
      padding-bottom: clamp(92px, 10vw, 156px);
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-auto-flow: dense;
      gap: 16px;
    }

    .proof-card {
      grid-column: span 3;
      min-height: 224px;
      border-radius: 8px;
      padding: clamp(24px, 3vw, 34px);
    }

    .proof-card-main {
      grid-column: span 6;
      min-height: 286px;
    }

    .proof-grid .proof-card:nth-child(n+4) {
      grid-column: span 4;
    }

    .proof-card h2 {
      font-size: clamp(34px, 4.2vw, 58px);
      line-height: 1;
      text-wrap: balance;
    }

    .proof-card p {
      font-size: 16px;
      line-height: 1.55;
    }

    .proof-num {
      font-size: clamp(46px, 5vw, 70px);
      font-weight: 800;
    }

    .proof-card:nth-child(6) .proof-num {
      color: var(--mint);
    }

    .now-section {
      background: #f8fbfa;
      padding-top: clamp(110px, 12vw, 176px);
      padding-bottom: clamp(110px, 12vw, 176px);
    }

    .now-grid {
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-auto-flow: dense;
      gap: 16px;
      max-width: var(--max-wide);
    }

    .now-card {
      grid-column: span 3;
      min-height: 300px;
      border-radius: 8px;
      padding: clamp(24px, 3vw, 34px);
    }

    .now-card-large {
      grid-column: span 6;
    }

    .now-grid .now-card:nth-child(4) {
      grid-column: 1 / -1;
      min-height: 190px;
    }

    .home-piano,
    .home-lab {
      padding: clamp(110px, 12vw, 176px) 0;
    }

    .home-piano {
      background: #fbfcfb;
    }

    .home-piano-panel,
    .home-lab-panel {
      gap: clamp(22px, 4vw, 52px);
    }

    .home-piano-media,
    .home-piano-copy,
    .home-lab-preview {
      border-radius: 8px;
    }

    .home-piano-media {
      min-height: 520px;
    }

    .home-piano-media img,
    .piano-photo-card img,
    .shot-img img,
    .stringing-photo img,
    .feature-img img {
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .home-piano-media:hover img,
    .piano-photo-card:hover img,
    .shot:hover .shot-img img,
    .stringing-photo:hover img,
    .feature-img:hover img {
      transform: scale(1.045);
      filter: contrast(1.05) saturate(1.02);
    }

    .home-piano-copy h2,
    .home-lab h2 {
      text-wrap: balance;
    }

    .timeline-section {
      padding-top: clamp(108px, 12vw, 172px);
      padding-bottom: clamp(108px, 12vw, 172px);
    }

    footer {
      padding: clamp(34px, 5vw, 54px) 22px;
      background:
        linear-gradient(180deg, #edf4f1, #06100d);
      border-top: 0;
      color: rgba(255, 255, 255, 0.58);
    }

    .foot-bottom {
      align-items: center;
    }

    .foot-links a {
      color: rgba(255, 255, 255, 0.64);
    }

    .foot-links a:hover {
      color: #fff;
    }

    @media (max-width: 1000px) {
      .hero-copy {
        max-width: 780px;
      }

      .proof-grid,
      .now-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
      }

      .proof-card,
      .proof-card-main,
      .proof-grid .proof-card:nth-child(n+4),
      .now-card,
      .now-card-large,
      .now-grid .now-card:nth-child(4) {
        grid-column: span 3;
      }

      .proof-card-main,
      .now-card-large {
        grid-column: 1 / -1;
      }

      .proof-grid .proof-card:nth-child(6),
      .now-grid .now-card:nth-child(4) {
        grid-column: 1 / -1;
      }

    }

    @media (max-width: 720px) {
      nav {
        width: calc(100% - 28px);
        height: 56px;
      }

      #hero {
        min-height: 0;
      }

      .hero-name {
        font-size: clamp(52px, 18vw, 82px);
        line-height: 0.92;
      }

      .hero-sub {
        font-size: 19px;
      }

      .proof-grid,
      .now-grid {
        grid-template-columns: 1fr;
      }

      .proof-card,
      .proof-card-main,
      .proof-grid .proof-card:nth-child(n+4),
      .now-card,
      .now-card-large,
      .now-grid .now-card:nth-child(4) {
        grid-column: auto;
      }

      .proof-card,
      .now-card {
        min-height: 0;
      }

      .home-piano-media {
        min-height: 0;
      }

    }

    /* Human pass: pull back the over-designed pieces */
    :root {
      --sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Helvetica Neue', Arial, sans-serif;
      --max: 900px;
      --max-wide: 1120px;
    }

    body {
      background: #fbfbfb;
      color: #1d1d1f;
    }

    nav {
      top: 12px;
      height: 58px;
      width: min(1120px, calc(100% - 32px));
      background: rgba(255, 255, 255, 0.78);
      border-color: rgba(0, 0, 0, 0.08);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
    }

    nav::before,
    nav::after {
      opacity: 0.25;
    }

    .nav-name,
    .nav-links a {
      font-weight: 600;
    }

    .nav-links a {
      font-size: 12px;
      padding-left: 10px;
      padding-right: 10px;
    }

    section {
      padding: clamp(64px, 7vw, 104px) 0;
    }

    .h-display {
      font-size: clamp(38px, 5vw, 64px);
      font-weight: 700;
      line-height: 1.02;
    }

    .h-section {
      font-size: clamp(34px, 4.2vw, 54px);
      font-weight: 700;
      line-height: 1.05;
    }

    .h-sub {
      font-size: clamp(16px, 1.45vw, 19px);
    }

    #hero {
      min-height: clamp(560px, 74vh, 700px);
      padding-top: clamp(116px, 12vw, 152px);
      padding-bottom: clamp(74px, 8vw, 112px);
      background:
        linear-gradient(90deg, rgba(5, 9, 8, 0.82) 0%, rgba(5, 9, 8, 0.52) 50%, rgba(5, 9, 8, 0.12) 100%),
        linear-gradient(180deg, rgba(5, 9, 8, 0.05), rgba(5, 9, 8, 0.36)),
        url("uploads/DSCF8850_20000.jpeg") center / cover no-repeat;
    }

    #hero::after {
      height: 22%;
    }

    .hero-name {
      font-size: clamp(54px, 7vw, 92px);
      font-weight: 700;
      line-height: 0.96;
    }

    .hero-sub {
      font-size: clamp(18px, 1.8vw, 24px);
      line-height: 1.32;
    }

    .proof-section,
    .now-section,
    .home-piano,
    #quick-links,
    #about,
    #badminton,
    #stringing,
    #photography,
    #life,
    #contact,
    .piano-page {
      background: #fbfbfb !important;
    }

    .proof-grid,
    .now-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      width: min(var(--max-wide), calc(100% - 44px));
      margin-left: auto;
      margin-right: auto;
    }

    .proof-card,
    .proof-card-main,
    .proof-grid .proof-card:nth-child(n+4),
    .now-card,
    .now-card-large,
    .now-grid .now-card:nth-child(4) {
      grid-column: auto;
      min-height: 0;
      border-radius: 12px;
      padding: 24px;
      background: #fff;
      border: 1px solid #e4e7e5;
      box-shadow: none;
      color: #1d1d1f;
    }

    .proof-card::before,
    .proof-card::after,
    .now-card::before,
    .now-card::after,
    .life-card::before,
    .life-card::after,
    .piano-detail-card::before,
    .piano-detail-card::after {
      content: none;
      display: none;
    }

    .proof-card-main {
      grid-column: span 2;
      background: #f4f7f5;
      color: #1d1d1f;
    }

    .proof-kicker,
    .now-label {
      color: #0b765d;
      font-size: 13px;
      font-weight: 600;
    }

    .proof-card h2 {
      font-size: clamp(28px, 3.2vw, 40px);
      font-weight: 700;
      line-height: 1.08;
    }

    .proof-card-main p,
    .now-card-large p,
    .proof-card p,
    .now-card p {
      color: #6e6e73;
    }

    .proof-num {
      font-size: clamp(34px, 4vw, 48px);
      font-weight: 700;
      color: #1d1d1f !important;
    }

    .now-card-large {
      grid-column: span 2;
      background: #101513;
      color: #fff;
    }

    .now-card-large h3 {
      color: #fff;
    }

    .home-piano-media,
    .home-piano-copy,
    .home-lab-preview,
    .piano-hero-card,
    .piano-photo-card {
      border-radius: 14px;
    }

    .home-lab {
      background: #101513;
    }

    footer {
      background: #f2f4f3;
      color: #86868b;
      border-top: 1px solid #e4e7e5;
      padding: 28px 22px 24px;
    }

    .foot-links a {
      color: #86868b;
    }

    .foot-links a:hover {
      color: #1d1d1f;
    }

    @media (hover: hover) {
      .proof-card:hover,
      .now-card:hover,
      .life-card:hover,
      .piano-detail-card:hover {
        transform: none;
        box-shadow: none;
      }
    }

    @media (max-width: 900px) {
      .proof-grid,
      .now-grid {
        grid-template-columns: 1fr 1fr;
      }

      .proof-card-main,
      .now-card-large {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 640px) {
      .proof-grid,
      .now-grid {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
      }

      .hero-name {
        font-size: clamp(46px, 16vw, 68px);
      }
    }

    .site-index {
      padding: 54px 0 76px !important;
      background: #fbfbfb !important;
    }

    .site-index-inner {
      width: min(900px, calc(100% - 44px));
      max-width: none;
      display: grid;
      grid-template-columns: 250px 1fr;
      gap: 52px;
      align-items: start;
    }

    .site-index-note {
      position: sticky;
      top: 112px;
    }

    .site-index-note h2 {
      font-size: clamp(24px, 2.4vw, 32px);
      line-height: 1.08;
      font-weight: 650;
      margin: 0;
    }

    .site-index-note p {
      margin-top: 10px;
      color: #6e6e73;
      font-size: 15px;
      line-height: 1.48;
    }

    .site-index-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 42px;
      border-top: 1px solid #dde4e0;
    }

    .site-index-list a {
      display: block;
      padding: 16px 0 17px;
      border-bottom: 1px solid #dde4e0;
      text-decoration: none;
    }

    .site-index-list strong {
      display: block;
      color: #1d1d1f;
      font-size: 16px;
      line-height: 1.2;
      font-weight: 650;
    }

    .site-index-list span {
      display: block;
      margin-top: 4px;
      color: #717177;
      font-size: 14px;
      line-height: 1.42;
    }

    .site-index-list a:hover strong {
      color: #08745d;
    }

    .site-index-list a:hover span {
      color: #4f5552;
    }

    @media (max-width: 780px) {
      .site-index-inner {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .site-index-note {
        position: static;
      }

      .site-index-list {
        grid-template-columns: 1fr;
      }
    }

    /* Liquid glass tune-up */
    body > nav {
      background:
        linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.82),
          rgba(255, 255, 255, 0.46) 42%,
          rgba(255, 255, 255, 0.28)
        );
      border: 1px solid rgba(255, 255, 255, 0.68);
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.92),
        inset 0 -1px 1px rgba(255, 255, 255, 0.24),
        0 20px 52px rgba(8, 18, 15, 0.22);
    }

    body > nav::before {
      opacity: 0.62;
    }

    body > nav::after {
      opacity: 0.78;
    }

    body > nav .nav-name,
    body > nav .nav-links a {
      color: rgba(17, 21, 20, 0.92);
      text-shadow: 0 1px 1px rgba(255, 255, 255, 0.56);
    }

    body > nav .nav-links a:hover,
    body > nav .nav-links a.active {
      color: #075943;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.3));
      border-color: rgba(255, 255, 255, 0.58);
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.72),
        0 8px 20px rgba(8, 18, 15, 0.12);
    }

    .site-index {
      padding: clamp(54px, 7vw, 90px) 0 clamp(70px, 8vw, 110px) !important;
      background:
        radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.9), transparent 31%),
        radial-gradient(circle at 80% 16%, rgba(11, 118, 93, 0.12), transparent 26%),
        linear-gradient(180deg, #f7faf9 0%, #eef4f1 100%) !important;
    }

    .site-index-inner {
      position: relative;
      width: min(1000px, calc(100% - 48px));
      grid-template-columns: 260px 1fr;
      gap: clamp(28px, 5vw, 58px);
      padding: clamp(24px, 4vw, 42px);
      border-radius: 30px;
      overflow: hidden;
      isolation: isolate;
      background:
        linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.76),
          rgba(255, 255, 255, 0.42) 44%,
          rgba(255, 255, 255, 0.24)
        );
      border: 1px solid rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.86),
        inset 0 -1px 1px rgba(255, 255, 255, 0.18),
        0 24px 70px rgba(12, 29, 23, 0.14);
    }

    .site-index-inner::before,
    .site-index-inner::after {
      content: "";
      position: absolute;
      pointer-events: none;
      z-index: 0;
    }

    .site-index-inner::before {
      inset: 0;
      background:
        radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.2) 32%, transparent 56%),
        radial-gradient(circle at 92% 86%, rgba(11, 118, 93, 0.14), transparent 36%);
      opacity: 0.9;
      mix-blend-mode: screen;
    }

    .site-index-inner::after {
      inset: 1px;
      border-radius: inherit;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.38));
      opacity: 0.82;
    }

    .site-index-note,
    .site-index-list {
      position: relative;
      z-index: 1;
    }

    .site-index-note {
      top: 104px;
    }

    .site-index-note h2 {
      font-size: clamp(28px, 3vw, 38px);
      letter-spacing: -0.035em;
    }

    .site-index-note p {
      color: rgba(66, 66, 69, 0.78);
      font-size: 16px;
      max-width: 220px;
    }

    .site-index-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      border-top: 0;
    }

    .site-index-list a {
      position: relative;
      min-height: 96px;
      padding: 17px 44px 17px 18px;
      border: 1px solid rgba(255, 255, 255, 0.68);
      border-radius: 18px;
      background:
        linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.62),
          rgba(255, 255, 255, 0.34) 56%,
          rgba(255, 255, 255, 0.2)
        );
      backdrop-filter: blur(18px) saturate(170%);
      -webkit-backdrop-filter: blur(18px) saturate(170%);
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.72),
        0 12px 28px rgba(12, 29, 23, 0.07);
      transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .site-index-list a::after {
      content: ">";
      position: absolute;
      right: 18px;
      top: 18px;
      color: rgba(11, 118, 93, 0.72);
      font-weight: 700;
      line-height: 1;
    }

    .site-index-list strong {
      color: rgba(17, 21, 20, 0.94);
      font-size: 17px;
      letter-spacing: -0.02em;
    }

    .site-index-list span {
      max-width: 245px;
      color: rgba(66, 66, 69, 0.72);
      font-size: 14px;
    }

    .site-index-list a:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, 0.9);
      background:
        linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.78),
          rgba(255, 255, 255, 0.42) 56%,
          rgba(255, 255, 255, 0.26)
        );
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.84),
        0 16px 34px rgba(12, 29, 23, 0.11);
    }

    @media (max-width: 780px) {
      .site-index-inner {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        padding: 22px;
        border-radius: 24px;
      }

      .site-index-note p {
        max-width: 300px;
      }

      .site-index-list {
        grid-template-columns: 1fr;
      }

      .site-index-list a {
        min-height: 0;
        padding: 15px 42px 15px 16px;
      }
    }

    /* Homepage spacing and directory cleanup */
    .home-piano {
      padding-top: clamp(46px, 5vw, 76px) !important;
      padding-bottom: clamp(64px, 7vw, 104px) !important;
    }

    .home-lab,
    .timeline-section {
      padding-top: clamp(64px, 7vw, 104px) !important;
      padding-bottom: clamp(64px, 7vw, 104px) !important;
    }

    .now-section {
      padding-top: clamp(74px, 8vw, 118px) !important;
      padding-bottom: clamp(46px, 5vw, 74px) !important;
    }

    .site-index {
      padding: clamp(48px, 6vw, 76px) 0 clamp(58px, 7vw, 88px) !important;
      background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.86), transparent 31%),
        radial-gradient(circle at 88% 92%, rgba(11, 118, 93, 0.1), transparent 28%),
        linear-gradient(180deg, #f6faf8 0%, #eef4f1 100%) !important;
    }

    .site-index-inner {
      width: min(1040px, calc(100% - 48px));
      display: block;
      padding: clamp(22px, 3vw, 32px);
      border-radius: 26px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.36) 54%, rgba(255, 255, 255, 0.24));
      border: 1px solid rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(26px) saturate(175%);
      -webkit-backdrop-filter: blur(26px) saturate(175%);
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.84),
        0 22px 54px rgba(12, 29, 23, 0.11);
    }

    .site-index-note {
      position: relative;
      top: auto;
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      padding: 0 2px 18px;
      border-bottom: 1px solid rgba(17, 21, 20, 0.09);
    }

    .site-index-note h2 {
      font-size: clamp(24px, 2.6vw, 34px);
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .site-index-note p {
      max-width: 300px;
      margin: 0;
      font-size: 15px;
      line-height: 1.42;
      text-align: right;
      color: rgba(66, 66, 69, 0.72);
    }

    .site-index-list {
      margin-top: 14px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      border-top: 0;
    }

    .site-index-list a {
      min-height: 76px;
      padding: 14px 34px 14px 15px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.62);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.28));
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.68),
        0 10px 22px rgba(12, 29, 23, 0.055);
    }

    .site-index-list a::after {
      right: 14px;
      top: 15px;
      color: rgba(11, 118, 93, 0.62);
    }

    .site-index-list strong {
      font-size: 16px;
      line-height: 1.12;
      font-weight: 680;
      color: #1d1d1f;
    }

    .site-index-list span {
      margin-top: 5px;
      max-width: 180px;
      font-size: 13px;
      line-height: 1.32;
      color: rgba(66, 66, 69, 0.68);
    }

    .site-index-list a:hover {
      transform: translateY(-1px);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38));
    }

    @media (max-width: 900px) {
      .site-index-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .now-section,
      .home-piano,
      .home-lab,
      .timeline-section {
        padding-top: 48px !important;
        padding-bottom: 54px !important;
      }

      .site-index-inner {
        width: calc(100% - 32px);
        padding: 18px;
        border-radius: 22px;
      }

      .site-index-note {
        display: block;
      }

      .site-index-note p {
        margin-top: 8px;
        text-align: left;
      }

      .site-index-list {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .site-index-list a {
        min-height: 0;
        padding: 13px 34px 13px 14px;
      }
    }

    .now-section {
      padding-bottom: clamp(26px, 3vw, 40px) !important;
    }

    .home-piano {
      padding-top: clamp(30px, 3.5vw, 46px) !important;
      padding-bottom: clamp(36px, 4vw, 56px) !important;
    }

    .home-lab {
      padding-top: clamp(46px, 5vw, 70px) !important;
      padding-bottom: clamp(54px, 6vw, 88px) !important;
    }

    .timeline-section {
      padding-top: clamp(58px, 6vw, 92px) !important;
      padding-bottom: clamp(32px, 4vw, 46px) !important;
    }

    .site-index {
      padding-top: clamp(32px, 4vw, 48px) !important;
    }

    /* Subpage hero polish */
    #about,
    #badminton,
    #stringing,
    #photography,
    #projects,
    #life,
    #contact {
      position: relative;
      overflow: hidden;
    }

    #about > .container,
    #badminton > .container,
    #stringing > .container,
    #photography > .container,
    #projects > .container,
    #life > .container,
    #contact > .container,
    #badminton .feature-img,
    #stringing .pricing,
    #stringing .promises,
    #stringing .stringing-photo-row,
    #stringing .stringing-faq,
    #photography .gallery,
    #photography .gallery-sub,
    #projects .projects-grid,
    #projects .case-study,
    #life .life-grid,
    #life .aspire {
      position: relative;
      z-index: 1;
    }

    #about .head::after,
    #badminton .head::after,
    #stringing .head::after,
    #photography .head::after,
    #projects .head::after,
    #life .head::after,
    #contact .head::after {
      content: "";
      display: block;
      width: min(360px, 54vw);
      height: 1px;
      margin: clamp(22px, 3vw, 32px) auto 0;
      background: linear-gradient(90deg, transparent, rgba(29, 29, 31, 0.16), transparent);
    }

    #about .head::after,
    #badminton .head::after,
    #life .head::after,
    #contact .head::after {
      background: linear-gradient(90deg, transparent, rgba(11, 118, 93, 0.34), transparent);
    }

    #stringing .head::after {
      background: linear-gradient(90deg, transparent, rgba(185, 130, 47, 0.34), transparent);
    }

    #projects .head::after {
      background: linear-gradient(90deg, transparent, rgba(41, 151, 255, 0.28), transparent);
    }

    @media (max-width: 760px) {
      #about .head::after,
      #badminton .head::after,
      #stringing .head::after,
      #photography .head::after,
      #projects .head::after,
      #life .head::after,
      #contact .head::after {
        width: min(250px, 64vw);
        margin-top: 18px;
      }
    }

    /* Awesome-design-md: Apple-inspired directory cleanup */
    .site-index {
      scroll-margin-top: 96px;
      padding: clamp(58px, 7vw, 92px) 0 clamp(64px, 7vw, 104px) !important;
      background: #f5f5f7 !important;
    }

    .site-index-inner {
      width: min(1120px, calc(100% - 48px));
      display: grid !important;
      grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
      gap: clamp(34px, 6vw, 86px);
      padding: 0 !important;
      border: 0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
    }

    .site-index-note {
      display: block !important;
      padding: 2px 0 0 !important;
      border: 0 !important;
    }

    .site-index-kicker {
      display: block;
      margin-bottom: 12px;
      color: #0066cc;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.3;
    }

    .site-index-note h2 {
      max-width: 270px;
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 650;
      line-height: 1.06;
      letter-spacing: 0;
    }

    .site-index-note p {
      max-width: 300px;
      margin-top: 16px;
      text-align: left;
      color: #6e6e73;
      font-size: 17px;
      line-height: 1.47;
    }

    .site-index-list {
      margin-top: 0 !important;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0 clamp(30px, 4vw, 58px);
      border-top: 1px solid #e0e0e0;
    }

    .site-index-list a {
      position: relative;
      display: block;
      min-height: 0;
      padding: 20px 38px 20px 0;
      border: 0 !important;
      border-bottom: 1px solid #e0e0e0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
    }

    .site-index-list a::after {
      content: "";
      width: 7px;
      height: 7px;
      right: 10px;
      top: 50%;
      border-top: 2px solid #0066cc;
      border-right: 2px solid #0066cc;
      transform: translateY(-50%) rotate(45deg);
    }

    .site-index-list strong {
      color: #1d1d1f;
      font-size: 17px;
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: 0;
    }

    .site-index-list span {
      display: block;
      max-width: none;
      margin-top: 4px;
      color: #6e6e73;
      font-size: 16px;
      line-height: 1.45;
      letter-spacing: 0;
    }

    .site-index-list a:hover {
      transform: none;
      background: transparent !important;
      box-shadow: none !important;
    }

    .site-index-list a:hover strong,
    .site-index-list a:hover span {
      color: #0066cc;
    }

    @media (max-width: 780px) {
      .site-index-inner {
        width: calc(100% - 36px);
        grid-template-columns: 1fr;
        gap: 26px;
      }

      .site-index {
        scroll-margin-top: 86px;
        padding-top: 62px !important;
      }

      .site-index-note h2 {
        max-width: 420px;
      }

      .site-index-list {
        grid-template-columns: 1fr;
      }

      .site-index-list a {
        padding: 17px 34px 17px 0;
      }
    }

    /* Homepage proof grid: keep stat cards from orphaning */
    #proof {
      background: #f5f5f7 !important;
    }

    #proof .proof-grid {
      width: min(1120px, calc(100% - 48px));
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 14px;
      margin-left: auto;
      margin-right: auto;
    }

    #proof .proof-card,
    #proof .proof-card-main,
    #proof .proof-grid .proof-card:nth-child(n+4) {
      grid-column: span 2 !important;
      min-height: 200px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid #e0e0e0;
      box-shadow: none;
    }

    #proof .proof-card-main {
      grid-column: span 4 !important;
      min-height: 250px;
      background: #fbfbfd;
    }

    #proof .proof-grid .proof-card:nth-child(n+3) {
      grid-column: span 3 !important;
    }

    #proof .proof-grid .proof-card:nth-child(2) {
      grid-column: span 2 !important;
    }

    #proof .proof-card h2 {
      max-width: 620px;
      font-weight: 650;
      letter-spacing: 0;
    }

    #proof .proof-card p {
      max-width: 620px;
      color: #6e6e73;
    }

    #proof .proof-num {
      letter-spacing: 0;
    }

    @media (max-width: 900px) {
      #proof .proof-grid {
        width: calc(100% - 44px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      #proof .proof-card,
      #proof .proof-card-main,
      #proof .proof-grid .proof-card:nth-child(n+3),
      #proof .proof-grid .proof-card:nth-child(n+4),
      #proof .proof-grid .proof-card:nth-child(2) {
        grid-column: span 1 !important;
      }

      #proof .proof-card-main,
      #proof .proof-grid .proof-card:last-child {
        grid-column: 1 / -1 !important;
      }
    }

    @media (max-width: 640px) {
      #proof .proof-grid {
        width: calc(100% - 36px);
        grid-template-columns: 1fr;
      }

      #proof .proof-card,
      #proof .proof-card-main,
      #proof .proof-grid .proof-card:nth-child(n+3),
      #proof .proof-grid .proof-card:nth-child(n+4),
      #proof .proof-grid .proof-card:nth-child(2),
      #proof .proof-grid .proof-card:last-child {
        grid-column: 1 / -1 !important;
      }
    }

    /* No-gap layouts for homepage card/list sections */
    #quick-links .site-index-list {
      grid-template-columns: 1fr !important;
      gap: 0 !important;
      border-top: 1px solid #e0e0e0;
    }

    #quick-links .site-index-inner::before,
    #quick-links .site-index-inner::after {
      content: none !important;
      display: none !important;
    }

    #quick-links .site-index-inner {
      overflow: visible;
    }

    #quick-links .site-index-list a {
      min-height: 74px;
      padding-right: 42px;
      background: transparent !important;
    }

    #quick-links .site-index-list span {
      max-width: 620px;
    }

    #now .now-grid {
      width: min(1120px, calc(100% - 48px));
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 14px;
      margin-left: auto;
      margin-right: auto;
    }

    #now .now-card,
    #now .now-card-large,
    #now .now-grid .now-card:nth-child(4) {
      grid-column: span 6 !important;
      min-height: 220px;
    }

    #now .now-card-large {
      grid-column: span 8 !important;
      min-height: 260px;
    }

    #now .now-grid .now-card:nth-child(2) {
      grid-column: span 4 !important;
    }

    #now .now-card h3 {
      text-wrap: balance;
    }

    @media (max-width: 900px) {
      #now .now-grid {
        width: calc(100% - 44px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      #now .now-card,
      #now .now-card-large,
      #now .now-grid .now-card:nth-child(2),
      #now .now-grid .now-card:nth-child(4) {
        grid-column: span 1 !important;
      }

      #now .now-card-large,
      #now .now-grid .now-card:last-child {
        grid-column: 1 / -1 !important;
      }
    }

    @media (max-width: 640px) {
      #quick-links .site-index-list a {
        min-height: 0;
      }

      #now .now-grid {
        width: calc(100% - 36px);
        grid-template-columns: 1fr;
      }

      #now .now-card,
      #now .now-card-large,
      #now .now-grid .now-card:nth-child(2),
      #now .now-grid .now-card:nth-child(4),
      #now .now-grid .now-card:last-child {
        grid-column: 1 / -1 !important;
      }
    }

    /* Liquid glass version of the More Pages panel */
    #quick-links.site-index {
      scroll-margin-top: 96px;
      padding: clamp(56px, 7vw, 92px) 0 clamp(68px, 8vw, 108px) !important;
      background:
        radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.9), transparent 34%),
        linear-gradient(180deg, #f7faf9 0%, #eef4f1 100%) !important;
    }

    #quick-links .site-index-inner {
      position: relative;
      width: min(1080px, calc(100% - 48px));
      display: block !important;
      padding: clamp(22px, 3vw, 34px) !important;
      border-radius: 26px !important;
      overflow: hidden !important;
      isolation: isolate;
      border: 1px solid rgba(255, 255, 255, 0.72) !important;
      background:
        linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.76),
          rgba(255, 255, 255, 0.42) 48%,
          rgba(255, 255, 255, 0.28)
        ) !important;
      backdrop-filter: blur(28px) saturate(178%) contrast(103%) !important;
      -webkit-backdrop-filter: blur(28px) saturate(178%) contrast(103%) !important;
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.86),
        inset 0 -1px 1px rgba(255, 255, 255, 0.18),
        0 24px 64px rgba(12, 29, 23, 0.12) !important;
    }

    #quick-links .site-index-inner::before {
      content: "" !important;
      display: block !important;
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.22) 32%, transparent 58%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 42%);
      opacity: 0.9;
      mix-blend-mode: screen;
    }

    #quick-links .site-index-inner::after {
      content: "" !important;
      display: block !important;
      position: absolute;
      inset: 1px;
      z-index: 0;
      pointer-events: none;
      border-radius: inherit;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.72), transparent 30%, transparent 72%, rgba(255, 255, 255, 0.32));
      opacity: 0.7;
    }

    #quick-links .site-index-note,
    #quick-links .site-index-list {
      position: relative;
      z-index: 1;
    }

    #quick-links .site-index-note {
      display: grid !important;
      grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
      column-gap: clamp(18px, 4vw, 54px);
      row-gap: 10px;
      align-items: end;
      top: auto !important;
      padding: 2px 2px clamp(18px, 2.6vw, 28px) !important;
      border-bottom: 1px solid rgba(17, 21, 20, 0.08) !important;
    }

    #quick-links .site-index-kicker {
      grid-column: 1;
      grid-row: 1;
    }

    #quick-links .site-index-note h2 {
      grid-column: 1;
      grid-row: 2;
      max-width: 285px;
      font-size: clamp(28px, 3.3vw, 42px);
      line-height: 1.06;
      letter-spacing: 0;
    }

    #quick-links .site-index-note p {
      grid-column: 2;
      grid-row: 1 / span 2;
      align-self: end;
      max-width: 480px;
      margin: 0 0 2px;
      color: rgba(66, 66, 69, 0.76);
      font-size: 16px;
      line-height: 1.48;
    }

    #quick-links .site-index-list {
      display: grid !important;
      grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
      gap: 10px !important;
      border-top: 0 !important;
      margin: 14px 0 0 !important;
    }

    #quick-links .site-index-list a {
      position: relative;
      display: block;
      min-height: 92px;
      padding: 16px 42px 16px 17px;
      border-radius: 16px !important;
      border: 1px solid rgba(255, 255, 255, 0.62) !important;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.28)) !important;
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.7),
        0 10px 24px rgba(12, 29, 23, 0.055) !important;
    }

    #quick-links .site-index-list a::after {
      right: 17px;
    }

    #quick-links .site-index-list span {
      max-width: 260px;
      color: rgba(66, 66, 69, 0.72);
      font-size: 14px;
      line-height: 1.38;
    }

    #quick-links .site-index-list a:hover {
      transform: translateY(-1px);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)) !important;
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.8),
        0 14px 30px rgba(12, 29, 23, 0.09) !important;
    }

    @media (max-width: 820px) {
      #quick-links .site-index-inner {
        width: calc(100% - 36px);
        padding: 20px !important;
        border-radius: 22px !important;
      }

      #quick-links.site-index {
        scroll-margin-top: 86px;
        padding-top: 62px !important;
      }

      #quick-links .site-index-note {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      #quick-links .site-index-kicker,
      #quick-links .site-index-note h2,
      #quick-links .site-index-note p {
        grid-column: 1;
        grid-row: auto;
      }

      #quick-links .site-index-note h2,
      #quick-links .site-index-note p {
        max-width: 420px;
      }

      #quick-links .site-index-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      }

      #quick-links .site-index-list a {
        min-height: 0;
        padding: 15px 40px 15px 16px;
      }
    }

    @media (max-width: 560px) {
      #quick-links .site-index-list {
        grid-template-columns: 1fr !important;
      }
    }

    /* Restore the earlier side-by-side liquid glass pages panel */
    #quick-links.site-index {
      position: relative;
      overflow: hidden;
      scroll-margin-top: 96px;
      padding: clamp(58px, 7vw, 94px) 0 clamp(70px, 8vw, 112px) !important;
      background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.96), transparent 31%),
        radial-gradient(circle at 86% 24%, rgba(11, 118, 93, 0.12), transparent 25%),
        radial-gradient(circle at 78% 82%, rgba(11, 118, 93, 0.1), transparent 30%),
        linear-gradient(180deg, #f8fbfa 0%, #eef4f1 100%) !important;
    }

    #quick-links.site-index::before,
    #quick-links.site-index::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border-radius: 999px;
      filter: blur(34px);
      opacity: 0.52;
    }

    #quick-links.site-index::before {
      width: 190px;
      height: 190px;
      right: 15%;
      top: 16%;
      background: rgba(11, 118, 93, 0.16);
    }

    #quick-links.site-index::after {
      width: 150px;
      height: 150px;
      right: 31%;
      bottom: 18%;
      background: rgba(41, 151, 255, 0.08);
    }

    #quick-links .site-index-inner {
      position: relative;
      z-index: 1;
      width: min(1100px, calc(100% - 48px));
      display: grid !important;
      grid-template-columns: minmax(240px, 330px) minmax(0, 1fr) !important;
      gap: clamp(24px, 4vw, 52px);
      align-items: start;
      padding: clamp(28px, 4vw, 44px) !important;
      border-radius: 30px !important;
      overflow: hidden !important;
      isolation: isolate;
      border: 1px solid rgba(255, 255, 255, 0.72) !important;
      background:
        linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.78),
          rgba(255, 255, 255, 0.42) 48%,
          rgba(255, 255, 255, 0.26)
        ) !important;
      backdrop-filter: blur(30px) saturate(180%) contrast(104%) !important;
      -webkit-backdrop-filter: blur(30px) saturate(180%) contrast(104%) !important;
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.88),
        inset 0 -1px 1px rgba(255, 255, 255, 0.18),
        0 24px 70px rgba(12, 29, 23, 0.14) !important;
    }

    #quick-links .site-index-inner::before {
      content: "" !important;
      display: block !important;
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.22) 30%, transparent 56%),
        radial-gradient(circle at 88% 82%, rgba(11, 118, 93, 0.12), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%);
      opacity: 0.92;
      mix-blend-mode: screen;
    }

    #quick-links .site-index-inner::after {
      content: "" !important;
      display: block !important;
      position: absolute;
      inset: 1px;
      z-index: 0;
      pointer-events: none;
      border-radius: inherit;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.72), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.34));
      opacity: 0.74;
    }

    #quick-links .site-index-note,
    #quick-links .site-index-list {
      position: relative;
      z-index: 1;
    }

    #quick-links .site-index-note {
      display: block !important;
      top: auto !important;
      padding: 2px 0 0 !important;
      border: 0 !important;
    }

    #quick-links .site-index-kicker,
    #quick-links .site-index-note h2,
    #quick-links .site-index-note p {
      grid-column: auto;
      grid-row: auto;
    }

    #quick-links .site-index-note h2 {
      max-width: 300px;
      font-size: clamp(30px, 3.5vw, 44px);
      line-height: 1.06;
      letter-spacing: 0;
    }

    #quick-links .site-index-note p {
      max-width: 310px;
      margin-top: 16px;
      color: rgba(66, 66, 69, 0.76);
      font-size: 16px;
      line-height: 1.48;
    }

    #quick-links .site-index-list {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 10px !important;
      margin: 0 !important;
      border-top: 0 !important;
    }

    #quick-links .site-index-list a {
      position: relative;
      display: block;
      min-height: 104px;
      padding: 17px 42px 17px 18px;
      border-radius: 16px !important;
      border: 1px solid rgba(255, 255, 255, 0.64) !important;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.3)) !important;
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.7),
        0 10px 24px rgba(12, 29, 23, 0.055) !important;
    }

    #quick-links .site-index-list a::after {
      right: 17px;
    }

    #quick-links .site-index-list span {
      max-width: 260px;
      color: rgba(66, 66, 69, 0.72);
      font-size: 14px;
      line-height: 1.38;
    }

    @media (max-width: 820px) {
      #quick-links.site-index {
        scroll-margin-top: 86px;
        padding-top: 62px !important;
      }

      #quick-links.site-index::before,
      #quick-links.site-index::after {
        opacity: 0.34;
      }

      #quick-links .site-index-inner {
        width: calc(100% - 36px);
        grid-template-columns: 1fr !important;
        gap: 22px;
        padding: 22px !important;
        border-radius: 24px !important;
      }

      #quick-links .site-index-note h2,
      #quick-links .site-index-note p {
        max-width: 430px;
      }

      #quick-links .site-index-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      }

      #quick-links .site-index-list a {
        min-height: 0;
        padding: 15px 40px 15px 16px;
      }
    }

    @media (max-width: 560px) {
      #quick-links .site-index-list {
        grid-template-columns: 1fr !important;
      }
    }

    /* Soften the handoff from the timeline into the More Pages glass panel */
    #timeline.timeline-section {
      padding-bottom: clamp(88px, 9vw, 132px) !important;
      background:
        linear-gradient(
          180deg,
          #f8fafb 0%,
          #f8fafb 70%,
          #f7faf9 88%,
          #f4f8f6 100%
        ) !important;
    }

    #timeline + #quick-links.site-index {
      margin-top: -1px;
      padding-top: clamp(54px, 6vw, 84px) !important;
      background:
        linear-gradient(
          180deg,
          #f4f8f6 0%,
          rgba(247, 250, 249, 0.96) 13%,
          rgba(248, 251, 250, 0.72) 28%,
          rgba(238, 244, 241, 0.32) 48%,
          transparent 66%
        ),
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.96), transparent 32%),
        radial-gradient(circle at 86% 38%, rgba(11, 118, 93, 0.12), transparent 28%),
        radial-gradient(circle at 78% 86%, rgba(11, 118, 93, 0.1), transparent 31%),
        linear-gradient(180deg, #f8fbfa 0%, #eef4f1 100%) !important;
    }

    #timeline + #quick-links.site-index::before {
      top: 30%;
      opacity: 0.44;
    }

    #timeline + #quick-links.site-index::after {
      bottom: 14%;
      opacity: 0.42;
    }

    @media (max-width: 820px) {
      #timeline.timeline-section {
        padding-bottom: clamp(58px, 12vw, 88px) !important;
      }

      #timeline + #quick-links.site-index {
        padding-top: clamp(42px, 10vw, 64px) !important;
      }
    }

    /* Site polish: natural photos, balanced cards, and short-page footers */
    html,
    body {
      min-height: 100%;
    }

    body {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
    }

    main {
      flex: 1 0 auto;
    }

    footer {
      flex-shrink: 0;
    }

    .green-mark {
      color: var(--mint);
      font-weight: 700;
    }

    .no-break {
      white-space: nowrap;
    }

    #badminton .green-mark,
    #badminton .read strong.green-mark {
      color: var(--mint) !important;
    }

    #proof .proof-card:nth-child(3) .proof-num,
    #badminton .stat:nth-child(2) .stat-num {
      color: var(--mint) !important;
    }

    body.contact-page main {
      display: flex;
      flex-direction: column;
    }

    body.contact-page #contact {
      flex: 1;
      display: flex;
      align-items: center;
      padding-top: clamp(124px, 13vw, 176px) !important;
      padding-bottom: clamp(88px, 10vw, 136px) !important;
    }

    #badminton .feature-img {
      width: min(620px, calc(100% - 44px));
      max-width: 620px;
      padding: 0;
    }

    #badminton .feature-img img {
      aspect-ratio: auto;
      height: auto;
      max-height: none;
      object-fit: contain;
      object-position: center;
    }

    #photography .gallery,
    #photography .gallery-sub-grid {
      align-items: start;
    }

    #photography .g-a1 {
      grid-column: span 7;
    }

    #photography .g-a1 .shot-img,
    #photography .g-a2 .shot-img {
      aspect-ratio: 3 / 2;
    }

    #photography .g-a2 {
      grid-column: span 5;
    }

    #photography .g-a3,
    #photography .g-a4 {
      grid-column: span 6;
    }

    #photography .g-a3 .shot-img,
    #photography .g-a4 .shot-img {
      aspect-ratio: 4 / 5;
    }

    #photography .gs-1 {
      grid-column: span 4;
    }

    #photography .gs-1 .shot-img {
      aspect-ratio: 3 / 4;
    }

    #photography .gs-2 {
      grid-column: span 8;
    }

    #photography .gs-2 .shot-img {
      aspect-ratio: 16 / 10;
    }

    #photography .gs-3,
    #photography .gs-4,
    #photography .gs-5 {
      grid-column: span 4;
    }

    #photography .gs-3 .shot-img,
    #photography .gs-4 .shot-img,
    #photography .gs-5 .shot-img {
      aspect-ratio: 3 / 2;
    }

    #photography .shot-img img {
      object-position: center;
    }

    #life .life-grid {
      max-width: 920px;
      grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    #life .life-card {
      grid-column: span 3;
    }

    #life .life-card:last-child:nth-child(odd),
    #stringing .faq-grid details:last-child:nth-child(odd) {
      grid-column: 1 / -1;
    }

    #life .life-photo-strip {
      width: min(920px, calc(100% - 44px));
      margin: 42px auto 0;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 18px;
    }

    #life .life-photo-card {
      margin: 0;
    }

    #life .life-photo-card img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 18px;
      box-shadow: 0 24px 70px rgba(16, 31, 28, 0.1);
    }

    #life .life-photo-card figcaption {
      margin-top: 10px;
      color: var(--ink-3);
      font-size: 14px;
      line-height: 1.35;
    }

    #life .aspire {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      max-width: 900px;
      margin: 52px auto 0;
      padding: clamp(32px, 4.4vw, 50px);
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: 24px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.36)),
        radial-gradient(circle at 16% 12%, rgba(11, 118, 93, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.52);
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.92),
        inset 0 -1px 1px rgba(255, 255, 255, 0.28),
        0 24px 70px rgba(16, 31, 28, 0.11);
      backdrop-filter: blur(26px) saturate(170%);
      -webkit-backdrop-filter: blur(26px) saturate(170%);
      color: var(--ink);
      text-align: left;
    }

    #life .aspire::before {
      content: "";
      position: absolute;
      inset: 1px;
      z-index: -1;
      border-radius: inherit;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), transparent 42%, rgba(11, 118, 93, 0.08));
      pointer-events: none;
    }

    #life .aspire::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -52px;
      bottom: -72px;
      z-index: -1;
      border-radius: 999px;
      background: rgba(11, 118, 93, 0.12);
      filter: blur(14px);
      pointer-events: none;
    }

    #life .aspire-kicker {
      margin: 0 0 14px;
      color: var(--mint);
      font-size: 17px;
      font-weight: 700;
      line-height: 1.3;
    }

    #life .aspire-text {
      max-width: 800px;
      margin: 0;
      color: var(--ink-2);
      font-size: clamp(24px, 2.2vw, 30px);
      font-weight: 400;
      line-height: 1.45;
      letter-spacing: -0.012em;
    }

    @media (min-width: 641px) and (max-width: 900px) {
      .story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .story-grid.two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .story-grid .story-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        min-height: 0;
      }
      .piano-detail-grid .piano-detail-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 900px) {
      #photography .g-a1,
      #photography .g-a2,
      #photography .g-a3,
      #photography .g-a4 {
        grid-column: span 12;
      }

      #photography .gs-1,
      #photography .gs-2 {
        grid-column: span 6;
      }

      #photography .gs-3,
      #photography .gs-4,
      #photography .gs-5 {
        grid-column: span 4;
      }

      #photography .gs-1 .shot-img {
        aspect-ratio: 3 / 4;
      }

      #photography .gs-2 .shot-img,
      #photography .gs-3 .shot-img,
      #photography .gs-4 .shot-img,
      #photography .gs-5 .shot-img {
        aspect-ratio: 3 / 2;
      }
    }

    @media (max-width: 640px) {
      #badminton .feature-img {
        width: calc(100% - 36px);
      }

      #badminton .feature-img img {
        aspect-ratio: 4 / 5;
      }

      #photography .gs-1,
      #photography .gs-2,
      #photography .gs-3,
      #photography .gs-4,
      #photography .gs-5 {
        grid-column: span 12;
      }

      #photography .g-a1 .shot-img,
      #photography .g-a2 .shot-img,
      #photography .gs-2 .shot-img,
      #photography .gs-3 .shot-img,
      #photography .gs-4 .shot-img,
      #photography .gs-5 .shot-img {
        aspect-ratio: 3 / 2;
      }

      #photography .g-a3 .shot-img,
      #photography .g-a4 .shot-img,
      #photography .gs-1 .shot-img {
        aspect-ratio: 4 / 5;
      }

      #life .life-grid {
        grid-template-columns: 1fr;
      }

      #life .life-photo-strip {
        width: calc(100% - 36px);
        margin-top: 34px;
        grid-template-columns: 1fr;
        gap: 22px;
      }

      #life .life-photo-card img {
        border-radius: 14px;
      }

      #life .life-card,
      #life .life-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
      }

      #life .aspire {
        margin: 42px 18px 0;
        padding: 28px 24px;
        border-radius: 20px;
      }

      #life .aspire-text {
        font-size: 21px;
        line-height: 1.4;
      }
    }

    /* Admissions snapshot homepage: simpler, visual, and focused */
    body.home-snapshot {
      background: #fbfbfb;
    }

    body.home-snapshot #hero {
      min-height: clamp(590px, 82vh, 780px);
      padding-top: clamp(122px, 12vw, 164px);
      padding-bottom: clamp(82px, 9vw, 126px);
      background:
        linear-gradient(90deg, rgba(3, 8, 7, 0.84) 0%, rgba(3, 8, 7, 0.58) 42%, rgba(3, 8, 7, 0.1) 100%),
        linear-gradient(180deg, rgba(3, 8, 7, 0.04), rgba(3, 8, 7, 0.42)),
        url("uploads/DSCF8850_20000.jpeg") center / cover no-repeat;
    }

    body.home-snapshot #hero::after {
      height: 28%;
      background: linear-gradient(180deg, transparent, #fbfbfb 92%);
    }

    body.home-snapshot .hero-copy {
      max-width: 760px;
    }

    body.home-snapshot .hero-name {
      font-size: clamp(56px, 7.6vw, 106px);
      max-width: 980px;
    }

    body.home-snapshot .hero-sub {
      max-width: 620px;
      font-size: clamp(19px, 2vw, 27px);
      color: rgba(255, 255, 255, 0.9);
    }

    body.home-snapshot .home-core {
      padding: clamp(50px, 6vw, 86px) 0 clamp(58px, 6vw, 90px);
      background: #fbfbfb;
    }

    .home-section-intro {
      display: grid;
      grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
      gap: clamp(24px, 5vw, 70px);
      align-items: end;
      margin-bottom: clamp(22px, 3.2vw, 38px);
    }

    .home-section-intro h2 {
      margin: 0;
      color: var(--ink);
      font-size: clamp(38px, 5vw, 64px);
      line-height: 1.02;
      letter-spacing: -0.04em;
      font-weight: 760;
    }

    .home-section-intro p {
      margin: 0 0 5px;
      max-width: 520px;
      color: var(--ink-3);
      font-size: clamp(17px, 1.5vw, 20px);
      line-height: 1.5;
      letter-spacing: -0.01em;
    }

    .home-highlight-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      grid-auto-rows: minmax(260px, auto);
      gap: 16px;
    }

    .home-highlight {
      position: relative;
      min-height: 260px;
      display: flex;
      overflow: hidden;
      border-radius: 22px;
      color: #fff;
      background: #111816;
      border: 1px solid rgba(17, 21, 20, 0.08);
      box-shadow: 0 22px 60px rgba(18, 31, 28, 0.12);
      isolation: isolate;
      text-decoration: none;
    }

    .home-highlight:hover,
    .home-highlight:focus-visible,
    .home-highlight * {
      text-decoration: none;
    }

    .home-highlight::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.0) 8%, rgba(0, 0, 0, 0.68) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 54%);
      pointer-events: none;
    }

    .home-highlight figure {
      position: absolute;
      inset: 0;
      margin: 0;
      z-index: 0;
      background: #111816;
    }

    .home-highlight img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.001);
      transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .home-highlight:hover img {
      transform: scale(1.045);
    }

    .home-highlight-copy {
      position: relative;
      z-index: 2;
      align-self: flex-end;
      width: 100%;
      padding: clamp(20px, 2.6vw, 34px);
    }

    .home-highlight-copy span {
      display: block;
      margin-bottom: 10px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 13px;
      font-weight: 760;
      letter-spacing: 0.01em;
    }

    .home-highlight-copy h3 {
      max-width: 520px;
      margin: 0;
      color: #fff;
      font-size: clamp(24px, 2.2vw, 34px);
      line-height: 1.08;
      letter-spacing: -0.025em;
      font-weight: 760;
      text-wrap: balance;
    }

    .home-highlight-copy p {
      max-width: 520px;
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 14px;
      line-height: 1.48;
      letter-spacing: -0.005em;
    }

    .home-highlight-large {
      grid-column: span 2;
      grid-row: span 2;
      min-height: 536px;
    }

    .home-highlight-large .home-highlight-copy h3 {
      font-size: clamp(34px, 4vw, 52px);
      max-width: 430px;
    }

    .home-highlight:nth-child(4) {
      grid-column: span 2;
    }

    .home-highlight-app {
      background:
        radial-gradient(circle at 24% 18%, rgba(217, 181, 111, 0.24), transparent 34%),
        linear-gradient(145deg, #101b17, #07100d);
    }

    .home-highlight-app .home-highlight-copy {
      padding-top: 220px;
    }

    .home-highlight-app::after {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 10%, rgba(0, 0, 0, 0.62) 100%);
    }

    .mini-court {
      position: absolute;
      inset: 20px 20px auto;
      height: 44%;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background:
        linear-gradient(160deg, rgba(31, 107, 75, 0.74), rgba(9, 27, 22, 0.9));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
      z-index: 1;
    }

    .mini-court span,
    .mini-court strong,
    .mini-court em {
      position: absolute;
      display: block;
    }

    .mini-line {
      left: 11%;
      right: 11%;
      height: 1px;
      background: rgba(255, 255, 255, 0.36);
    }

    .mini-line-top { top: 28%; }
    .mini-line-mid { top: 58%; }
    .mini-line-center {
      top: 0;
      bottom: 0;
      left: 50%;
      right: auto;
      width: 1px;
      height: auto;
    }

    .mini-flight {
      width: 58%;
      height: 38%;
      left: 20%;
      top: 20%;
      border-top: 2px dashed rgba(217, 181, 111, 0.72);
      border-radius: 50%;
      transform: rotate(-9deg);
    }

    .mini-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
    }

    .mini-dot.one { left: 28%; top: 45%; opacity: 0.48; }
    .mini-dot.two { left: 48%; top: 25%; opacity: 0.9; }
    .mini-dot.three { left: 68%; top: 36%; opacity: 0.62; }

    .mini-court strong {
      right: 16px;
      bottom: 20px;
      color: #fff;
      font-size: 30px;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .mini-court em {
      right: 18px;
      bottom: 7px;
      color: rgba(255, 255, 255, 0.62);
      font-style: normal;
      font-size: 12px;
      font-weight: 700;
    }

    body.home-snapshot .home-core + .home-achievements {
      padding-top: 0;
    }

    .home-app-focus {
      padding: clamp(72px, 8vw, 126px) 0;
      color: #f5f5f7;
      background:
        radial-gradient(circle at 18% 4%, rgba(31, 107, 75, 0.42), transparent 30%),
        linear-gradient(180deg, #07100d 0%, #0d1713 100%);
    }

    .home-app-panel {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
      gap: clamp(30px, 5vw, 72px);
      align-items: center;
    }

    .home-app-copy h2 {
      max-width: 700px;
      margin: 0;
      color: #fff;
      font-size: clamp(36px, 5vw, 66px);
      line-height: 1.02;
      letter-spacing: -0.05em;
      font-weight: 780;
      text-wrap: balance;
    }

    .home-app-copy p {
      max-width: 720px;
      margin: 22px 0 0;
      color: rgba(245, 245, 247, 0.72);
      font-size: clamp(17px, 1.55vw, 20px);
      line-height: 1.55;
      letter-spacing: -0.01em;
    }

    .home-app-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 30px;
    }

    .home-app-points div {
      min-height: 132px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.055);
    }

    .home-app-points strong {
      display: block;
      margin-bottom: 9px;
      color: var(--gold);
      font-size: 14px;
      font-weight: 780;
    }

    .home-app-points span {
      display: block;
      color: rgba(245, 245, 247, 0.68);
      font-size: 14px;
      line-height: 1.45;
    }

    .home-app-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .home-app-actions .pill {
      color: #07100d;
      background: #fff;
      border-color: rgba(255, 255, 255, 0.8);
    }

    .home-app-actions .pill.ghost {
      color: #fff;
      background: transparent;
      border-color: rgba(255, 255, 255, 0.24);
    }

    .home-app-demo {
      position: relative;
      display: block;
      overflow: hidden;
      min-height: 520px;
      border-radius: 34px;
      padding: 18px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
        #101b17;
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        0 30px 80px rgba(0, 0, 0, 0.28);
    }

    .demo-phone-top {
      display: flex;
      gap: 6px;
      margin-bottom: 14px;
    }

    .demo-phone-top span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.28);
    }

    .demo-court {
      position: relative;
      height: 330px;
      overflow: hidden;
      border-radius: 24px;
      background:
        radial-gradient(circle at 50% 115%, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(160deg, #1f6b4b, #10231d 72%);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .demo-court span,
    .demo-court i {
      position: absolute;
      display: block;
    }

    .demo-baseline,
    .demo-service {
      left: 12%;
      right: 12%;
      height: 1px;
      background: rgba(255, 255, 255, 0.34);
    }

    .demo-baseline { top: 26%; }
    .demo-service { top: 58%; }
    .demo-net {
      top: 0;
      bottom: 0;
      left: 50%;
      width: 1px;
      background: rgba(255, 255, 255, 0.28);
    }

    .demo-path {
      width: 66%;
      height: 38%;
      left: 15%;
      top: 18%;
      border-top: 2px dashed rgba(217, 181, 111, 0.7);
      border-radius: 50%;
      transform: rotate(-8deg);
    }

    .demo-court i {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
    }

    .demo-court .p1 { left: 26%; top: 46%; opacity: 0.4; }
    .demo-court .p2 { left: 43%; top: 25%; opacity: 0.7; }
    .demo-court .p3 { left: 55%; top: 20%; opacity: 1; }
    .demo-court .p4 { left: 71%; top: 34%; opacity: 0.58; }

    .demo-readout {
      margin-top: 16px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .demo-readout span {
      display: block;
      margin-bottom: 5px;
      color: rgba(245, 245, 247, 0.62);
      font-size: 13px;
      font-weight: 700;
    }

    .demo-readout strong {
      display: block;
      color: #fff;
      font-size: clamp(34px, 4vw, 48px);
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .home-achievements {
      padding: clamp(50px, 6vw, 82px) 0;
      background: #fbfbfb;
    }

    .achievement-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .achievement-card {
      min-height: 176px;
      padding: 28px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(17, 21, 20, 0.08);
      box-shadow: 0 18px 48px rgba(18, 31, 28, 0.055);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .achievement-card strong {
      display: block;
      color: var(--ink);
      font-size: clamp(42px, 5vw, 64px);
      line-height: 1;
      letter-spacing: -0.035em;
      font-weight: 780;
    }

    .achievement-card strong.green-mark {
      color: var(--mint);
    }

    .achievement-card span {
      display: block;
      color: var(--ink-3);
      font-size: 15px;
      line-height: 1.42;
    }

    body.home-snapshot #quick-links.site-index {
      padding-top: clamp(62px, 7vw, 104px) !important;
    }

    @media (max-width: 980px) {
      .home-section-intro,
      .home-app-panel {
        grid-template-columns: 1fr;
      }

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

      .home-highlight-large,
      .home-highlight:nth-child(4) {
        grid-column: 1 / -1;
      }

      .home-highlight-large {
        min-height: 560px;
      }

      .home-app-points,
      .achievement-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      body.home-snapshot #hero {
        min-height: 0;
        padding-top: 122px;
        padding-bottom: 96px;
        background-position: center;
      }

      body.home-snapshot .hero-meta {
        gap: 9px 18px;
      }

      .home-section-intro {
        gap: 12px;
      }

      .home-highlight-grid,
      .home-app-points,
      .achievement-grid {
        grid-template-columns: 1fr;
      }

      .home-highlight,
      .home-highlight-large,
      .home-highlight:nth-child(4) {
        grid-column: 1 / -1;
        min-height: 420px;
      }

      .home-highlight-large {
        min-height: 520px;
      }

      .home-highlight-copy {
        padding: 22px;
      }

      .home-highlight-copy h3,
      .home-highlight-large .home-highlight-copy h3 {
        font-size: 31px;
      }

      .home-app-demo {
        min-height: 430px;
        border-radius: 28px;
      }

      .demo-court {
        height: 250px;
      }

      .home-highlight-app .home-highlight-copy {
        padding-top: 200px;
      }

      .achievement-card {
        min-height: 130px;
      }
    }

    @media (max-width: 900px) {
      .sport-photo-grid {
        grid-template-columns: 1fr;
      }

      .sport-photo-main img {
        height: clamp(360px, 100vw, 560px);
      }

      .sport-photo-notes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
      }

      .stringing-photo-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .sport-photo-notes {
        grid-template-columns: 1fr;
      }
    }

    /* Activities page: keep secondary work clear and aligned */
    body.activities-page #projects .projects-grid {
      width: min(1120px, calc(100% - 48px));
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: stretch;
      margin-top: clamp(32px, 5vw, 56px);
    }

    body.activities-page #projects .pcard {
      min-height: 360px;
    }

    @media (max-width: 780px) {
      body.activities-page #projects .projects-grid {
        width: calc(100% - 36px);
        grid-template-columns: 1fr;
      }
    }

    /* Privacy and terms pages */
    body.legal-page {
      background:
        radial-gradient(circle at 12% 18%, rgba(11, 118, 93, 0.12), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(185, 130, 47, 0.10), transparent 30%),
        linear-gradient(180deg, #f8fafb 0%, #eef3f1 56%, #fbfcfb 100%);
    }

    .legal-hero {
      padding-top: clamp(132px, 14vw, 190px);
      padding-bottom: clamp(28px, 5vw, 54px);
    }

    .legal-shell {
      max-width: 820px;
      margin: 0 auto;
      padding: clamp(28px, 5vw, 52px);
      border-radius: 28px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 251, 0.74) 54%, rgba(229, 236, 233, 0.84));
      border: 1px solid rgba(255, 255, 255, 0.82);
      box-shadow:
        0 28px 70px rgba(21, 34, 31, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
    }

    .legal-kicker {
      color: var(--mint);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.01em;
      margin-bottom: 14px;
    }

    .legal-shell h1 {
      font-size: clamp(44px, 7vw, 76px);
      font-weight: 650;
      line-height: 0.98;
      letter-spacing: -0.055em;
      color: var(--ink);
    }

    .legal-shell p {
      margin-top: 18px;
      max-width: 680px;
      color: var(--ink-3);
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.38;
      letter-spacing: -0.014em;
    }

    .legal-content {
      padding-top: 16px;
    }

    .legal-grid {
      width: min(1040px, calc(100% - 44px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    .legal-card {
      min-height: 250px;
      padding: clamp(24px, 3vw, 34px);
      border-radius: 20px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 251, 0.72));
      border: 1px solid rgba(11, 118, 93, 0.12);
      box-shadow:
        0 20px 50px rgba(30, 45, 40, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
    }

    .legal-card span {
      display: block;
      color: var(--mint);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.01em;
      margin-bottom: 16px;
    }

    .legal-card h2 {
      color: var(--ink);
      font-size: clamp(24px, 2.7vw, 32px);
      font-weight: 650;
      line-height: 1.08;
      letter-spacing: -0.036em;
      margin-bottom: 16px;
    }

    .legal-card p {
      color: var(--ink-3);
      font-size: 16px;
      line-height: 1.58;
      letter-spacing: -0.008em;
      margin-bottom: 14px;
    }

    .legal-card p:last-child {
      margin-bottom: 0;
    }

    .legal-card .a-link {
      margin-top: 6px;
    }

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

      .legal-card {
        min-height: 0;
      }
    }

    @media (max-width: 560px) {
      .legal-hero {
        padding-top: 112px;
      }

      .legal-shell {
        border-radius: 22px;
      }

      .legal-grid {
        width: calc(100% - 36px);
      }
    }

    /* Badminton Speed Meter policy pages: plain support-doc style, not portfolio glass */
    body.speedlab-policy-page {
      background: #fbfcfb;
      color: var(--ink);
    }

    .speedlab-policy-page .policy-topbar {
      width: min(980px, calc(100% - 44px));
      margin: 26px auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--rule-2);
    }

    .speedlab-policy-page .policy-topbar a {
      color: var(--mint);
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
    }

    .speedlab-policy-page .policy-topbar a:hover {
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .speedlab-policy-page .legal-hero {
      padding-top: clamp(52px, 8vw, 92px);
      padding-bottom: 18px;
    }

    .speedlab-policy-page .legal-shell {
      max-width: 880px;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
    }

    .speedlab-policy-page .legal-shell h1 {
      font-size: clamp(42px, 6vw, 68px);
      letter-spacing: -0.05em;
    }

    .speedlab-policy-page .legal-shell p {
      max-width: 760px;
      color: var(--ink-3);
    }

    .speedlab-policy-page .legal-content {
      padding-top: 12px;
      padding-bottom: clamp(66px, 8vw, 110px);
    }

    .speedlab-policy-page .legal-grid {
      width: min(980px, calc(100% - 44px));
      grid-template-columns: 1fr;
      gap: 0;
      border-top: 1px solid var(--rule-2);
    }

    .speedlab-policy-page .legal-card {
      min-height: 0;
      padding: 30px 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      border-bottom: 1px solid var(--rule-2);
      box-shadow: none;
      display: grid;
      grid-template-columns: 190px minmax(0, 1fr);
      column-gap: 36px;
    }

    .speedlab-policy-page .legal-card span {
      margin: 5px 0 0;
      color: var(--mint);
    }

    .speedlab-policy-page .legal-card h2,
    .speedlab-policy-page .legal-card p,
    .speedlab-policy-page .legal-card .a-link {
      grid-column: 2;
    }

    .speedlab-policy-page .legal-card h2 {
      margin-bottom: 12px;
      font-size: clamp(22px, 2.6vw, 30px);
    }

    .speedlab-policy-page .legal-card p {
      max-width: 720px;
    }

    @media (max-width: 720px) {
      .speedlab-policy-page .policy-topbar {
        width: calc(100% - 36px);
        margin-top: 20px;
      }

      .speedlab-policy-page .legal-hero {
        padding-top: 48px;
      }

      .speedlab-policy-page .legal-grid {
        width: calc(100% - 36px);
      }

      .speedlab-policy-page .legal-card {
        display: block;
      }

      .speedlab-policy-page .legal-card span {
        margin-bottom: 12px;
      }
    }

    /* Final containment guard for the restored piano page. */
    .piano-page .piano-hero-card {
      box-sizing: border-box;
    }

    .piano-page .piano-copy-block,
    .piano-page .piano-photo-card {
      min-width: 0;
      max-width: 100%;
    }

    @media (max-width: 640px) {
      .piano-page .music-page-staff {
        right: 16px;
        width: min(420px, calc(100vw - 32px));
      }

      .piano-page .piano-hero-card {
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: minmax(0, 1fr);
      }

      .piano-page .piano-copy-block {
        width: 100%;
        box-sizing: border-box;
      }

      .piano-page .piano-copy-block h3,
      .piano-page .piano-copy-block p {
        max-width: 100%;
      }

      .piano-page .piano-photo-card {
        width: 100%;
        min-height: 0;
        aspect-ratio: 4 / 3;
      }
    }
