:root {
      --bg: #f7f4ee;
      --text: #2b3a3f;
      --muted: #5b6b70;
      --accent: #315447;
      --accent-2: #6f8d7a;
      --line: #dfe6dc;
      --card: #ffffff;
      --radius: 16px;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.7;
    }
    .wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
    header {
      position: sticky; top: 0; z-index: 10;
      backdrop-filter: blur(6px);
      background: rgba(247, 244, 238, 0.94);
      border-bottom: 1px solid var(--line);
    }
    .nav {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 0;
    }
    .brand { font-weight: 700; letter-spacing: 0.5px; }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
    }
    .nav a { color: var(--text); text-decoration: none; margin-left: 16px; font-size: 14px; }
    .lang-switch {
      border: 1px solid var(--line);
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      display: inline-flex;
      gap: 6px;
      align-items: center;
      color: var(--muted);
      background: #f3f6f1;
    }
    .lang-switch a {
      margin: 0;
      text-decoration: none;
      color: inherit;
      font-size: 12px;
      font-weight: 600;
    }
    .lang-switch a.is-active {
      color: var(--accent);
    }
    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: #f4efe6;
      color: var(--text);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
    }
    .mobile-menu-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(43, 58, 63, 0.18);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s ease;
      z-index: 20;
    }
    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      width: min(90vw, 360px);
      height: 100vh;
      background: #f7f4ee;
      border-left: 1px solid var(--line);
      transform: translateX(100%);
      transition: transform 0.25s ease;
      z-index: 21;
      display: grid;
      align-content: start;
      gap: 10px;
      padding: 16px 22px 28px;
    }
    .mobile-menu-close {
      justify-self: end;
      width: 44px;
      height: 44px;
      border: 0;
      background: transparent;
      color: #2b3a3f;
      font-size: 40px;
      line-height: 0.8;
      cursor: pointer;
    }
    .mobile-menu a {
      margin: 0;
      font-size: 32px;
      line-height: 1.15;
      text-decoration: none;
      color: #2b3a3f;
      font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
      font-weight: 600;
      border-bottom: 1px solid #e3ded4;
      padding: 8px 0 12px;
    }
    .mobile-menu-divider {
      height: 1px;
      background: var(--line);
      margin: 12px 0;
    }
    .mobile-menu-lang {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.8px;
      color: #5b6b70;
      display: inline-flex;
      gap: 8px;
      align-items: center;
    }
    .mobile-menu-lang a {
      margin: 0;
      font-size: 14px;
      color: inherit;
      text-decoration: none;
      border: 0;
      padding: 0;
      line-height: 1;
      font-weight: 700;
      font-family: inherit;
    }
    .mobile-menu-lang a.is-active {
      color: var(--accent);
    }
    body.menu-open {
      overflow: hidden;
    }
    body.menu-open .mobile-menu {
      transform: translateX(0);
    }
    body.menu-open .mobile-menu-backdrop {
      opacity: 1;
      pointer-events: auto;
    }

    .hero { padding: 72px 0; }
    .hero-bg {
      background-image:
        linear-gradient(rgba(43, 64, 53, 0.42), rgba(247, 244, 238, 0.76)),
        url("WhatsApp%20Image%202026-02-09%20at%209.07.24%20AM.jpeg");
      background-size: cover;
      background-position: center;
      background-blend-mode: multiply, normal;
    }
    .hero-bg .hero-content {
      background: rgba(247, 244, 238, 0.48);
      border: 1px solid rgba(223, 230, 220, 0.9);
      border-radius: 20px;
      padding: 24px 22px;
      backdrop-filter: blur(1px);
    }
    .hero-content {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }
    .eyebrow { color: var(--muted); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
    h1 { font-size: clamp(30px, 4.4vw, 52px); margin: 12px 0 16px; }
    .hero-title {
      display: inline-block;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    .hero-title em {
      font-style: normal;
      background: linear-gradient(180deg, transparent 60%, rgba(47, 62, 54, 0.18) 60%);
      padding: 0 4px;
      border-radius: 6px;
    }
    .hero p { margin: 0 0 16px; }
    .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 10px 18px; border-radius: 999px; border: 1px solid var(--accent);
      text-decoration: none; color: var(--accent); font-weight: 600;
      background: transparent;
    }
    .btn.primary { background: var(--accent); color: #fff; }
    .hero-card {
      background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
      padding: 28px; box-shadow: 0 10px 30px rgba(47, 62, 54, 0.08);
    }
    .hero-card h3 { margin: 0 0 8px; }
    .hero-card ul { margin: 0; padding-left: 18px; }

    .hero-lead {
      font-size: 18px;
      color: var(--text);
      margin: 0 auto 18px;
    }

    section {
      padding: 56px 0;
      min-height: 70vh;
      display: flex;
      align-items: center;
      position: relative;
    }
    section > .wrap {
      width: 100%;
    }
    .section-pattern::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(49, 84, 71, 0.08), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(111, 141, 122, 0.07), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(49, 84, 71, 0.05), transparent 55%);
      pointer-events: none;
    }
    .section-pattern > .wrap {
      position: relative;
      z-index: 1;
    }
    .section-title { font-size: 22px; margin: 0 0 20px; }
    .stack {
      display: grid;
      gap: 18px;
    }
    .cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
    .card {
      background: #f3f5f0; border: 1px solid var(--line); border-radius: var(--radius);
      padding: 20px;
    }
    .card-wide {
      grid-column: 1 / -1;
    }
    .meta {
      color: var(--muted);
      font-size: 14px;
      margin-top: -2px;
      margin-bottom: 8px;
    }
    .compact-note {
      font-size: 15px;
      color: var(--muted);
    }
    .workshop-grid {
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      align-items: stretch;
    }
    .course-toggle {
      margin-top: 12px;
      border-top: 1px solid var(--line);
      padding-top: 10px;
    }
    .course-toggle summary {
      cursor: pointer;
      font-weight: 600;
      color: var(--accent);
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .course-toggle summary::-webkit-details-marker { display: none; }
    .course-toggle summary::after {
      content: "+";
      font-size: 18px;
      line-height: 1;
    }
    .course-toggle[open] summary::after {
      content: "-";
    }
    .course-toggle ul,
    .course-toggle ol {
      margin: 10px 0 0 18px;
      color: var(--muted);
    }
    .series-grid .card {
      display: flex;
      flex-direction: column;
    }
    .series-trigger {
      margin-top: auto;
      border: none;
      border-top: 1px solid var(--line);
      background: transparent;
      color: var(--accent);
      font-weight: 700;
      text-align: left;
      padding: 12px 0 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .series-trigger::after {
      content: "+";
      font-size: 24px;
      line-height: 1;
      font-weight: 400;
    }
    .series-trigger.is-active::after {
      content: "−";
    }
    .series-detail-board {
      margin-top: 18px;
      background: #f7f1e8;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 20px;
      min-height: 120px;
    }
    .series-detail-empty {
      display: none;
      color: var(--muted);
    }
    .series-detail-empty.is-active {
      display: block;
      animation: fadeInSeries 220ms ease forwards;
    }
    .series-detail {
      display: none;
      color: var(--text);
    }
    .series-detail.is-active {
      display: block;
      animation: fadeInSeries 220ms ease forwards;
    }
    .series-detail h3 {
      margin: 0 0 10px;
      color: var(--accent);
      font-size: 20px;
    }
    .series-detail ul,
    .series-detail ol {
      margin: 0;
      padding-left: 20px;
      display: grid;
      gap: 6px;
    }
    @keyframes fadeInSeries {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .card h4 { margin: 0 0 8px; }

    .quote {
      font-size: 20px;
      color: var(--accent);
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
    }

    .image-grid {
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .image-tile {
      background: #efeae0;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      min-height: 180px;
      display: grid;
      place-items: center;
    }
    .image-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .image-collage {
      display: grid;
      gap: 16px;
      grid-template-columns: 1.1fr 0.9fr;
    }
    .image-collage .image-tile {
      min-height: 220px;
    }
    .image-collage .image-tile.tall {
      min-height: 320px;
    }

    .intro-grid {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      align-items: stretch;
    }
    .intro-timeline {
      display: grid;
      gap: 18px;
    }
    .timeline-item {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 18px;
      align-items: start;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 18px;
    }
    .timeline-label {
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--muted);
    }
    .timeline-content h3 {
      margin: 0 0 8px;
      font-size: 18px;
      color: var(--accent);
    }
    .intro-panel {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px;
    }
    .intro-panel h3 {
      margin: 0 0 10px;
      font-size: 18px;
    }
    .intro-meta {
      border-left: 3px solid var(--accent);
      padding-left: 14px;
      color: var(--muted);
    }

    .benefits-band {
      text-align: center;
    }
    .benefits-band .section-title {
      max-width: 720px;
      margin: 0 auto 28px;
    }
    .benefits-grid {
      display: grid;
      gap: 28px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      align-items: start;
    }
    .benefit-item {
      padding: 6px 8px 0;
    }
    .benefit-icon {
      width: 92px;
      height: 92px;
      border-radius: 24px;
      margin: 0 auto 14px;
      background:
        radial-gradient(circle at 30% 30%, rgba(49, 84, 71, 0.12), transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(111, 141, 122, 0.14), transparent 60%),
        #eaf0e7;
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
    }
    .benefit-icon svg {
      width: 44px;
      height: 44px;
      stroke: var(--accent);
      fill: none;
      stroke-width: 1.6;
    }
    .benefit-item h4 {
      margin: 0 0 8px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-size: 14px;
      color: var(--accent);
    }
    .benefit-item p {
      margin: 0 auto;
      max-width: 260px;
      color: var(--muted);
    }

    .about-intro-section {
      min-height: auto;
      align-items: flex-start;
    }
    .about-intro-layout {
      display: grid;
      grid-template-columns: minmax(280px, 0.88fr) minmax(380px, 1.12fr);
      align-items: stretch;
      gap: 24px;
      background: #f4efe5;
      border: 1px solid var(--line);
      border-radius: 22px;
      overflow: hidden;
    }
    .about-intro-media {
      min-height: 520px;
      max-height: 760px;
    }
    .about-intro-media img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center top;
      background: #e9e5dc;
      display: block;
    }
    .about-intro-copy {
      padding: 28px 34px 30px 6px;
    }
    .about-intro-title {
      margin: 0 0 16px;
      font-size: clamp(36px, 4.4vw, 62px);
      line-height: 1.05;
      font-family: "Noto Serif TC", "Times New Roman", serif;
      color: #111;
    }
    .about-intro-copy p {
      margin: 0 0 14px;
      font-size: 16px;
      line-height: 1.7;
      color: #24343b;
    }
    .about-intro-copy .btn {
      margin-top: 12px;
      min-width: 210px;
    }

    .about-split {
      display: grid;
      gap: 42px;
      grid-template-columns: minmax(320px, 580px) minmax(360px, 1fr);
      align-items: center;
    }
    .about-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: #eff4ec;
    }
    .about-section::before {
      content: "";
      position: absolute;
      inset: -10% -5% -10% -5%;
      background: rgba(255, 255, 255, 0.14);
      opacity: 1;
      pointer-events: none;
    }
    .about-section::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(0, 0, 0, 0.05), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(0, 0, 0, 0.04), transparent 50%);
      pointer-events: none;
    }
    .about-section > .wrap {
      position: relative;
      z-index: 1;
    }
    .about-photo {
      position: relative;
      border: none;
      width: fit-content;
      max-width: min(100%, 430px);
      justify-self: center;
      padding: 24px 0 0 24px;
      background: transparent;
    }
    .about-photo::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 85%;
      height: 85%;
      border-radius: 20px;
      background: #d6e2d6;
      z-index: 0;
    }
    .about-photo img {
      position: relative;
      z-index: 1;
      width: auto;
      max-width: 100%;
      max-height: 64vh;
      height: auto;
      border-radius: 20px;
      object-fit: contain;
      display: block;
      box-shadow: 0 18px 40px rgba(47, 62, 54, 0.16);
    }
    .about-panel {
      background: transparent;
      border: none;
      border-radius: 0;
      padding: 28px 8px;
    }
    .about-title {
      margin: 0 0 12px;
      font-size: 30px;
      color: #6b5a46;
    }
    .about-divider {
      height: 1px;
      background: #6b5a46;
      opacity: 0.6;
      margin: 8px 0 18px;
    }
    .about-rule {
      height: 1px;
      background: #7b6b5a;
      opacity: 0.7;
      margin: 12px 0 18px;
    }
    .about-panel p {
      margin: 0 0 16px;
      color: var(--text);
    }
    .about-panel p:last-child { margin-bottom: 0; }

    .accordion {
      display: grid;
      gap: 14px;
    }
    .accordion details {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 16px 18px;
    }
    .accordion summary {
      cursor: pointer;
      font-weight: 600;
      color: var(--accent);
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .accordion summary::-webkit-details-marker { display: none; }
    .accordion summary::after {
      content: "+";
      font-size: 18px;
      color: var(--accent);
    }
    .accordion details[open] summary::after {
      content: "–";
    }
    .accordion details > div {
      margin-top: 12px;
      color: var(--text);
    }
    .accordion ol, .accordion ul {
      margin: 8px 0 0 20px;
    }

    .cta-band {
      background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
      padding: 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
    }
    .contact-feature {
      background: #f2eee7;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 28px;
      display: grid;
      gap: 28px;
      grid-template-columns: minmax(240px, 0.95fr) minmax(260px, 1.05fr);
      align-items: center;
    }
    .contact-feature-media {
      border-radius: 14px;
      overflow: hidden;
      min-height: 320px;
      box-shadow: 0 14px 26px rgba(47, 62, 54, 0.1);
    }
    .contact-feature-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .contact-feature-copy h2 {
      margin: 0 0 14px;
      font-size: clamp(30px, 4vw, 56px);
      line-height: 1.05;
      font-family: "Noto Serif TC", "Times New Roman", serif;
      color: #6a6332;
    }
    .contact-feature-copy p {
      margin: 0 0 20px;
      color: #5f675c;
      font-size: 18px;
      max-width: 560px;
    }
    .contact-feature-btn {
      min-width: 220px;
      text-align: center;
    }

    .pub-section {
      background: #e2eadf;
      color: #2b3a3f;
      display: flex;
      align-items: center;
    }
    .pub-hero {
      display: grid;
      grid-template-columns: minmax(320px, 1fr) minmax(220px, 360px);
      gap: 32px;
      align-items: center;
    }
    .pub-copy h2 {
      margin: 0 0 12px;
      font-size: clamp(30px, 3.6vw, 52px);
      line-height: 1.08;
      font-family: "Noto Serif TC", "Times New Roman", serif;
      color: #2f3e36;
    }
    .pub-kicker {
      margin: 0 0 14px;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #5b6b70;
      font-weight: 700;
    }
    .pub-text {
      display: none;
      opacity: 0;
    }
    .pub-text.is-active {
      display: block;
      animation: fadeInPub 260ms ease forwards;
    }
    .pub-text p {
      margin: 0 0 18px;
      max-width: 620px;
      font-size: 18px;
      color: #2b3a3f;
    }
    .pub-switch {
      margin-top: 22px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .pub-tab {
      border: 1px solid #2f3e36;
      background: transparent;
      color: #2f3e36;
      border-radius: 999px;
      padding: 9px 14px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .pub-tab:hover,
    .pub-tab.is-active {
      background: #2f3e36;
      color: #f7f4ee;
    }
    .pub-bookstage {
      position: relative;
      min-height: 420px;
      display: grid;
      place-items: center;
    }
    .pub-book {
      display: none;
      width: min(92%, 300px);
      border-radius: 6px;
      box-shadow:
        14px 0 0 rgba(47, 62, 54, 0.16),
        22px 0 0 rgba(47, 62, 54, 0.09),
        0 16px 34px rgba(0, 0, 0, 0.2);
    }
    .pub-book.is-active {
      display: block;
      animation: fadeInPub 260ms ease forwards;
    }
    .pub-mobile-carousel {
      display: none;
      overflow: hidden;
    }
    @keyframes fadeInPub {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .services-section {
      background: var(--bg);
      color: var(--text);
      min-height: auto;
    }
    .services-heading {
      color: var(--text);
      text-align: center;
      margin-bottom: 12px;
      letter-spacing: 0.2px;
      font-size: clamp(30px, 3.5vw, 44px);
      font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
      font-weight: 700;
    }
    .services-intro {
      margin: 0 auto 26px;
      max-width: 900px;
      text-align: center;
      color: var(--muted);
      font-size: 18px;
    }
    .services-overview-grid {
      display: grid;
      gap: 24px;
      grid-template-columns: repeat(3, minmax(220px, 1fr));
      align-items: start;
    }
    .services-group {
      background: #f4efe6;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 18px 18px 20px;
      min-height: 100%;
    }
    .services-ph {
      width: 100%;
      aspect-ratio: 4 / 3;
      border-radius: 12px;
      border: 1px dashed #9aaeb7;
      background: linear-gradient(135deg, #d8e4ed, #c7d8e2);
      color: #4e6874;
      font-weight: 700;
      letter-spacing: 0.5px;
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      overflow: hidden;
    }
    .services-ph img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .services-group h3 {
      margin: 0 0 10px;
      font-size: 28px;
      line-height: 1.2;
      color: #23343c;
      font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
      font-weight: 700;
    }
    .services-group ul {
      margin: 0;
      padding-left: 22px;
      display: grid;
      gap: 8px;
      color: #324951;
      font-size: 18px;
    }
    .detail-block {
      display: grid;
      gap: 8px;
    }
    .detail-block p {
      margin: 0;
      color: var(--text);
    }
    .detail-block ul,
    .detail-block ol {
      margin: 0;
      padding-left: 22px;
      display: grid;
      gap: 6px;
    }
    .signature-program {
      background: linear-gradient(180deg, #eef3ea 0%, #e7efe8 100%);
      border: 1px solid #d0ddd2;
      border-radius: 20px;
      padding: 26px;
      box-shadow: 0 10px 30px rgba(31, 55, 74, 0.08);
    }
    .signature-program.is-clinical {
      background: linear-gradient(180deg, #edf4ee 0%, #e6efe8 100%);
      border-color: #bfd0c0;
      box-shadow: 0 14px 34px rgba(49, 84, 71, 0.14);
    }
    .signature-header {
      display: grid;
      gap: 10px;
      margin-bottom: 12px;
    }
    .signature-header h3 {
      margin: 0;
      font-size: clamp(28px, 3.2vw, 42px);
      line-height: 1.1;
      color: #1d3344;
      font-family: "Noto Serif TC", "Times New Roman", serif;
    }
    .signature-badge {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      padding: 8px 14px;
      border-radius: 999px;
      background: #e4eee5;
      color: #315447;
      border: 1px solid #c6d7c7;
      font-size: 12px;
      letter-spacing: 0.3px;
      font-weight: 700;
    }
    .clinical-title-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }
    .clinical-hospital-seal {
      flex: 0 0 auto;
      width: 68px;
      height: 68px;
      display: inline-grid;
      place-items: center;
      border-radius: 999px;
      background: #eaf2eb;
      border: 1px solid #c7d8c8;
      box-shadow: 0 5px 16px rgba(49, 84, 71, 0.12);
    }
    .clinical-hospital-seal svg {
      width: 56px;
      height: 56px;
      display: block;
    }
    .clinical-credibility-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin: 6px 0 6px;
    }
    .clinical-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      background: #deecdf;
      border: 1px solid #c3d6c4;
      color: #2f5446;
      padding: 7px 12px;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.2;
    }
    .clinical-metric-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }
    .clinical-metric {
      font-size: 12px;
      letter-spacing: 0.2px;
      color: #335948;
      background: #edf5ee;
      border: 1px solid #c9daca;
      border-radius: 999px;
      padding: 6px 10px;
      font-weight: 600;
    }
    .clinical-highlight-card {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 12px;
      align-items: start;
      background: #eaf3eb;
      border: 1px solid #c4d6c6;
      border-radius: 14px;
      padding: 14px;
      margin-bottom: 14px;
    }
    .clinical-highlight-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: #d7e7d8;
      display: grid;
      place-items: center;
      font-size: 18px;
    }
    .clinical-highlight-card h4 {
      margin: 0 0 6px;
      color: #274739;
      font-size: 16px;
    }
    .clinical-highlight-card p {
      margin: 0;
      color: #3a5b4b;
      font-size: 14px;
      line-height: 1.6;
    }
    .clinical-timeline-wrap {
      margin: 0 0 14px;
    }
    .clinical-timeline-wrap h4 {
      margin: 0 0 10px;
      color: #294a3b;
      font-size: 16px;
    }
    .clinical-timeline {
      display: grid;
      grid-template-columns: repeat(3, minmax(180px, 1fr));
      gap: 10px;
      position: relative;
    }
    .clinical-timeline::before {
      content: "";
      position: absolute;
      top: 26px;
      left: 9%;
      right: 9%;
      height: 1px;
      background: #b9cdbb;
      z-index: 0;
    }
    .timeline-stage {
      position: relative;
      z-index: 1;
      background: #f8fbf6;
      border: 1px solid #cfdfd0;
      border-radius: 14px;
      padding: 12px;
      min-height: 122px;
      box-shadow: 0 3px 10px rgba(49, 84, 71, 0.06);
    }
    .timeline-stage-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: #e2eee3;
      display: grid;
      place-items: center;
      margin-bottom: 6px;
      font-size: 15px;
    }
    .timeline-stage-week {
      margin: 0 0 4px;
      font-size: 12px;
      color: #557568;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }
    .timeline-stage h5 {
      margin: 0;
      color: #2f4e41;
      font-size: 14px;
      line-height: 1.35;
    }
    .signature-intro {
      margin: 0 0 16px;
      font-size: 17px;
      line-height: 1.75;
      color: #304958;
    }
    .signature-goals {
      background: #f9f7f2;
      border: 1px solid #d8dee7;
      border-radius: 14px;
      padding: 14px 16px;
      margin-bottom: 16px;
    }
    .signature-goals h4 {
      margin: 0 0 8px;
      color: #223d53;
      font-size: 16px;
      letter-spacing: 0.3px;
    }
    .signature-goals ul {
      margin: 0;
      padding-left: 20px;
      display: grid;
      gap: 6px;
      color: #365265;
    }
    .signature-modules {
      display: grid;
      grid-template-columns: repeat(3, minmax(220px, 1fr));
      gap: 12px;
    }
    .signature-module {
      background: #fbfaf7;
      border: 1px solid #d8dee7;
      border-radius: 14px;
      padding: 14px;
    }
    .signature-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: #e6edf5;
      color: #2e4e67;
      display: grid;
      place-items: center;
      margin-bottom: 8px;
    }
    .signature-icon svg {
      width: 22px;
      height: 22px;
      display: block;
    }
    .signature-module h5 {
      margin: 0 0 5px;
      color: #1f374a;
      font-size: 17px;
      letter-spacing: 0.2px;
    }
    .signature-module p {
      margin: 0;
      color: #4b6474;
      font-size: 14px;
      line-height: 1.55;
    }
    .practice-intro {
      background: #f5f1e8;
      border-color: #d8dee7;
      max-width: 920px;
    }
    .practice-overview {
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 16px;
      align-items: center;
      background: #f8f5ef;
      border-color: #d8dee7;
      padding: 24px;
    }
    .practice-overview p {
      margin: 0;
      color: #243947;
      font-size: 17px;
    }
    .practice-overview-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 1px solid #7f97ac;
      background: #e8eef4;
      display: grid;
      place-items: center;
    }
    .practice-overview-icon svg {
      width: 28px;
      height: 28px;
      stroke: #2f4c67;
      stroke-width: 1.5;
      fill: none;
    }
    .method-grid {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(3, minmax(220px, 1fr));
    }
    .method-card {
      background: #f7f3ea;
      border: 1px solid #d8dee7;
      border-radius: 16px;
      padding: 18px;
      min-height: 172px;
    }
    .method-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #e1eaf2;
      color: #2f4c67;
      display: grid;
      place-items: center;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .method-icon svg {
      width: 34px;
      height: 34px;
      display: block;
    }
    .method-card h3 {
      margin: 0 0 8px;
      font-size: 19px;
      line-height: 1.25;
      color: #213a50;
    }
    .method-card p {
      margin: 0;
      color: #4c6473;
      font-size: 15px;
      line-height: 1.6;
    }
    .delivery-block {
      background: #f7f3ea;
      border-color: #d8dee7;
      padding: 22px;
    }
    .delivery-block h4 {
      margin: 0 0 12px;
      font-size: 20px;
      color: #1f374a;
    }
    .delivery-simple-list {
      margin: 0;
      padding-left: 20px;
      display: grid;
      gap: 8px;
      color: #304958;
      font-size: 16px;
      line-height: 1.65;
    }
    .delivery-grid {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(3, minmax(200px, 1fr));
    }
    .delivery-card {
      background: #f9f6f0;
      border: 1px solid #d8dee7;
      border-radius: 14px;
      padding: 16px;
      min-height: 152px;
    }
    .delivery-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: #e7edf4;
      color: #2f4c67;
      display: grid;
      place-items: center;
      margin-bottom: 10px;
    }
    .delivery-icon svg {
      width: 22px;
      height: 22px;
      display: block;
    }
    .delivery-card h5 {
      margin: 0 0 6px;
      color: #1f374a;
      font-size: 16px;
      line-height: 1.3;
    }
    .delivery-card p {
      margin: 0;
      color: #4d6474;
      font-size: 14px;
      line-height: 1.55;
    }
    .quick-nav {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 4px;
    }
    .quick-nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: #f4efe6;
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      white-space: nowrap;
    }
    .quick-nav a:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 28px 0 60px; color: var(--muted);
    }
    footer a { color: var(--text); text-decoration: none; }

    @media (max-width: 1024px) {
      .delivery-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
      }
      .signature-modules {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
      }
    }

    @media (max-width: 640px) {
      .wrap { padding: 0 16px; }
      .nav { align-items: center; gap: 10px; }
      .nav-links { display: none; }
      .menu-toggle { display: inline-grid; place-items: center; }
      .lang-switch { display: none; }
      .brand {
        font-size: 18px;
        line-height: 1.2;
      }
      .hero { padding-top: 52px; }
      .cta-row { gap: 10px; }
      .btn { width: 100%; }
      section { padding: 40px 0; min-height: auto; }
      .about-section { min-height: auto; }
      .about-split { grid-template-columns: 1fr; gap: 28px; }
      .about-photo {
        width: fit-content;
        max-width: min(100%, 320px);
        padding: 14px 0 0 14px;
      }
      .about-photo::before {
        width: 88%;
        height: 88%;
        border-radius: 16px;
      }
      .about-photo img {
        max-height: 46vh;
      }
      .image-collage { grid-template-columns: 1fr; }
      .timeline-item { grid-template-columns: 1fr; }
      .intro-grid { grid-template-columns: 1fr; }
      .cta-band { flex-direction: column; align-items: flex-start; }
      .contact-feature { grid-template-columns: 1fr; padding: 18px; gap: 18px; }
      .contact-feature-media { min-height: 220px; }
      .contact-feature-copy h2 { font-size: clamp(28px, 9vw, 40px); }
      .contact-feature-copy p { font-size: 17px; }
      .pub-hero { display: none; }
      .pub-mobile-carousel {
        display: block;
      }
      .pub-mobile-track {
        display: flex;
        width: 100%;
        transition: transform 0.25s ease;
      }
      .pub-mobile-slide {
        min-width: 100%;
        background: #f2e9cd;
        border: 1px solid #d5c8a2;
        border-radius: 16px;
        padding: 14px;
      }
      .pub-mobile-slide img {
        width: 100%;
        border-radius: 12px;
        display: block;
        margin-bottom: 14px;
        background: #fff;
      }
      .pub-mobile-slide h3 {
        margin: 0 0 10px;
        font-size: clamp(38px, 9vw, 54px);
        line-height: 1.1;
        font-family: "Noto Serif TC", "Times New Roman", serif;
      }
      .pub-mobile-slide p {
        margin: 0 0 14px;
      }
      .pub-mobile-slide .btn {
        width: 100%;
      }
      .pub-mobile-controls {
        margin-top: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .pub-mobile-btn {
        border: 1px solid #2f3e36;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        background: #f7f4ee;
        color: #2f3e36;
        font-size: 24px;
      }
      .pub-mobile-dots {
        display: flex;
        gap: 8px;
      }
      .pub-mobile-dots button {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        border: 1px solid #2f3e36;
        background: transparent;
        padding: 0;
      }
      .pub-mobile-dots button.is-active {
        background: #2f3e36;
      }
      .workshop-grid { grid-template-columns: 1fr; }
      .services-overview-grid { grid-template-columns: 1fr; gap: 18px; }
      .services-group h3 { font-size: clamp(26px, 7.8vw, 32px); margin-bottom: 10px; }
      .services-group ul { font-size: 18px; }
      .quick-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        scrollbar-width: thin;
      }
      .practice-overview {
        grid-template-columns: 1fr;
      }
      .practice-overview-icon {
        margin-bottom: 2px;
      }
      .method-grid {
        grid-template-columns: 1fr;
      }
      .signature-program {
        padding: 20px 16px;
      }
      .clinical-title-wrap {
        align-items: flex-start;
      }
      .clinical-hospital-seal {
        width: 56px;
        height: 56px;
      }
      .clinical-hospital-seal svg {
        width: 46px;
        height: 46px;
      }
      .clinical-pill {
        font-size: 12px;
      }
      .clinical-metric-row {
        gap: 6px;
      }
      .clinical-highlight-card {
        grid-template-columns: 1fr;
        gap: 8px;
      }
      .clinical-highlight-icon {
        width: 34px;
        height: 34px;
      }
      .clinical-timeline {
        grid-template-columns: 1fr;
      }
      .clinical-timeline::before {
        display: none;
      }
      .signature-badge {
        font-size: 11px;
      }
      .signature-modules {
        grid-template-columns: 1fr;
      }
      .delivery-grid {
        grid-template-columns: 1fr;
      }
      .about-intro-layout {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .about-intro-media {
        min-height: 300px;
        max-height: 50vh;
      }
      .about-intro-media img {
        object-fit: contain;
        object-position: center top;
        background: #e9e5dc;
      }
      .about-intro-copy {
        padding: 22px 18px 24px;
      }
      .about-intro-title {
        font-size: clamp(34px, 12vw, 52px);
      }
      .about-intro-copy p {
        font-size: 17px;
      }
    }
