﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700;900&family=Noto+Serif+TC:wght@600;700;900&display=swap');

:root {
  --ink: #17331f;
  --ink-2: #35533c;
  --green: #2f633a;
  --green-deep: #173f26;
  --green-2: #6d8f50;
  --mint: #dcead8;
  --mint-2: #edf5e8;
  --cream: #f6efe0;
  --paper: #fffaf0;
  --line: rgba(47, 99, 58, .22);
  --orange: #c96716;
  --orange-soft: #f4dfc1;
  --blue: #1d5b7a;
  --blue-soft: #dcecf1;
  --shadow: 0 24px 70px rgba(33, 55, 39, .14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, calc(100vw - 42px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans TC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 9% 0%, rgba(115, 146, 76, .18), transparent 28rem),
    radial-gradient(circle at 92% 10%, rgba(201, 103, 22, .12), transparent 22rem),
    linear-gradient(180deg, #fbf5e7 0%, #f6efe0 46%, #eef3e4 100%);
  line-height: 1.75;
  letter-spacing: .01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(rgba(90, 64, 33, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 64, 33, .035) 1px, transparent 1px);
  background-size: 24px 24px;
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
p { margin-top: 0; }
h1, h2, h3, h4 { margin-top: 0; line-height: 1.22; }
ul { margin: 0; padding-left: 1.2em; }

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: 8px 12px;
  border-radius: 10px;
  z-index: 99;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 240, .82);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.brand-logo {
  display: block;
  width: 156px;
  height: auto;
}

.brand-divider {
  color: rgba(22, 53, 31, .42);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-topic {
  color: var(--green);
  font-size: 14px;
  letter-spacing: .12em;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-family: "Noto Serif TC", serif;
  font-size: 15px;
}

nav {
  display: flex;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-2);
}

nav a {
  padding: 8px 10px;
  border-radius: 999px;
}

nav a:hover { background: rgba(47, 99, 58, .09); }

.section {
  padding: 92px 0;
  position: relative;
}

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 126px 0 108px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(251,245,231,.9), rgba(251,245,231,.66) 42%, rgba(251,245,231,.88)),
    url("./assets/taipei101_BG.jpeg") center center / cover no-repeat;
  opacity: .6;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 150px;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(47, 99, 58, .28), transparent 48%),
    radial-gradient(ellipse at 80% 100%, rgba(108, 143, 80, .25), transparent 48%);
  clip-path: polygon(0 45%, 8% 50%, 17% 42%, 29% 58%, 44% 46%, 60% 60%, 76% 42%, 91% 56%, 100% 45%, 100% 100%, 0 100%);
  opacity: .72;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 900;
}

h1 {
  margin-bottom: 24px;
  font-family: "Noto Serif TC", serif;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  line-height: 1.04;
  letter-spacing: .03em;
  color: var(--ink);
  text-wrap: balance;
}

h1 span { color: var(--orange); }

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(1.42rem, 2.4vw, 2.1rem);
  font-weight: 900;
  color: var(--green-deep);
  text-wrap: balance;
}

.hero-text {
  max-width: 780px;
  margin-bottom: 32px;
  font-size: 1.14rem;
  color: var(--ink-2);
  font-weight: 600;
}

.hero-actions, .closing-tags, .badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions span, .closing-tags span, .badge-list span {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid rgba(47, 99, 58, .26);
  border-radius: 999px;
  background: rgba(255, 250, 240, .72);
  box-shadow: 0 10px 28px rgba(47, 99, 58, .08);
  font-weight: 800;
  color: var(--green);
}

.hero-card, .definition-card, .course-feature, .note-box {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(47, 99, 58, .18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 250, 240, .96), rgba(238, 243, 228, .92)),
    radial-gradient(circle at 100% 0%, rgba(108, 143, 80, .2), transparent 60%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  background: rgba(201, 103, 22, .12);
  border-radius: 50%;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.card-kicker, .case-label {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--green);
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.25;
  font-family: "Noto Serif TC", serif;
}

.hero-card p {
  position: relative;
  z-index: 1;
  color: var(--ink-2);
  font-size: 1.05rem;
}

.circle-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 34px;
  line-height: 1;
}

.mini-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 0;
}

.mini-metrics div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(47, 99, 58, .15);
}

.mini-metrics dt {
  display: block;
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  color: var(--orange);
}

.mini-metrics dd {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-2);
}

.leaf {
  position: absolute;
  width: 210px;
  height: 210px;
  opacity: .28;
  background:
    radial-gradient(ellipse at 30% 70%, transparent 32%, rgba(47,99,58,.55) 33%, transparent 36%),
    radial-gradient(ellipse at 50% 50%, rgba(108,143,80,.7), rgba(108,143,80,.03) 66%, transparent 67%);
  border-radius: 70% 10% 70% 10%;
}
.leaf-a { left: -80px; top: 95px; transform: rotate(18deg); }
.leaf-b { right: -72px; top: 150px; transform: rotate(205deg); }

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}
.section-heading.wide { max-width: 920px; }
.section-heading.compact { max-width: 700px; }

.section-heading h2, .eval-grid h2, .closing-card h2 {
  margin-bottom: 14px;
  font-family: "Noto Serif TC", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.15;
}
.section-heading p, .eval-lead {
  font-size: 1.12rem;
  color: var(--ink-2);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.overview-grid article, .value-list article, .design-principles article, .tool-grid article, .poster-grid article {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(47, 99, 58, .18);
  background: rgba(255, 250, 240, .74);
  box-shadow: 0 14px 45px rgba(33, 55, 39, .08);
}

.number {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: "Noto Serif TC", serif;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(201,103,22,.8);
  font-weight: 900;
}

.overview-grid h3, .value-list h3, .design-principles h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.overview-grid p, .value-list p, .design-principles p, .tool-grid p, .poster-grid li {
  margin-bottom: 0;
  color: var(--ink-2);
}

.concept-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.definition-card h3 {
  margin-bottom: 12px;
  font-family: "Noto Serif TC", serif;
  font-size: 2rem;
}

.value-list {
  display: grid;
  gap: 18px;
}

.value-list article {
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 18px;
  align-items: start;
}

.value-list article p,
.value-list article h3 {
  grid-column: 2;
}

.icon-line {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--mint);
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}

.note-box {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  background: rgba(255, 250, 240, .86);
  box-shadow: none;
  border-color: rgba(201,103,22,.28);
}
.note-box strong {
  flex: 0 0 auto;
  color: var(--orange);
}
.note-box span {
  color: var(--ink-2);
}

.image-band {
  display: grid;
  grid-template-columns: 1.35fr .82fr .82fr;
  gap: 18px;
  margin-top: 28px;
}

.history-grid,
.context-grid,
.faculty-grid,
.daily-prescriptions {
  display: grid;
  gap: 18px;
}

.history-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.history-grid article,
.context-grid article,
.faculty-panel,
.prescription-panel,
.daily-prescriptions article {
  border: 1px solid rgba(47,99,58,.18);
  border-radius: 24px;
  background: rgba(255,250,240,.76);
  box-shadow: 0 14px 38px rgba(33,55,39,.08);
}

.history-grid article {
  padding: 22px;
}

.history-grid span,
.daily-prescriptions span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.history-grid h3 {
  margin-bottom: 8px;
  color: var(--green);
}

.prescription-panel,
.faculty-panel {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 24px;
  padding: 26px;
}

.prescription-panel h3,
.faculty-panel h3 {
  font-family: "Noto Serif TC", serif;
  font-size: 1.75rem;
  color: var(--green-deep);
}

.prescription-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.prescription-grid article {
  min-height: 160px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(220,234,216,.56);
}

.prescription-grid strong {
  display: block;
  font-family: "Noto Serif TC", serif;
  font-size: 1.25rem;
  color: var(--green-deep);
}

.prescription-grid span,
.faculty-grid small,
.daily-prescriptions small {
  display: block;
  margin: 4px 0 10px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.why-now {
  background:
    radial-gradient(circle at 12% 20%, rgba(29,91,122,.12), transparent 24rem),
    linear-gradient(180deg, rgba(255,250,240,.52), rgba(220,234,216,.45));
}

.context-grid {
  grid-template-columns: repeat(3, 1fr);
}

.context-grid article {
  padding: 30px;
  min-height: 310px;
}

.context-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: .92;
  font-family: "Noto Serif TC", serif;
}

.context-grid strong span {
  font-size: .34em;
  color: var(--orange);
}

.context-grid small {
  display: block;
  margin-top: 18px;
  color: var(--ink-3);
  font-weight: 800;
}

.photo-placeholder {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(47, 99, 58, .22);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,250,240,.2), rgba(255,250,240,.74)),
    radial-gradient(circle at 28% 22%, rgba(255,255,255,.62), transparent 12rem),
    linear-gradient(135deg, rgba(47,99,58,.3), rgba(201,103,22,.22)),
    repeating-linear-gradient(45deg, rgba(47,99,58,.08) 0 1px, transparent 1px 14px);
  box-shadow: 0 18px 48px rgba(33, 55, 39, .12);
  color: var(--ink);
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 250, 240, .72);
  border-radius: 20px;
  pointer-events: none;
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: rgba(255, 250, 240, .38);
}

.photo-placeholder.has-image {
  background: rgba(255, 250, 240, .72);
}

.photo-placeholder.has-image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder.has-image::after {
  inset: auto 0 0;
  right: auto;
  top: auto;
  width: 100%;
  height: 48%;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255,250,240,0), rgba(255,250,240,.86));
}

.photo-placeholder span {
  position: relative;
  z-index: 2;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 250, 240, .72);
  color: rgba(22, 53, 31, .78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  border: 1px solid rgba(22, 53, 31, .16);
  backdrop-filter: blur(6px);
}

.photo-placeholder strong {
  position: relative;
  z-index: 2;
  max-width: 15em;
  font-family: "Noto Serif TC", serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.24;
  color: var(--green-deep);
  text-shadow: 0 1px 0 rgba(255,250,240,.55);
}

.case-photo strong {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.photo-placeholder.large {
  min-height: 320px;
}

.photo-placeholder.warm {
  background:
    linear-gradient(145deg, rgba(255,250,240,.18), rgba(255,250,240,.78)),
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.6), transparent 12rem),
    linear-gradient(135deg, rgba(201,103,22,.32), rgba(176,138,62,.22)),
    repeating-linear-gradient(45deg, rgba(201,103,22,.08) 0 1px, transparent 1px 14px);
}

.cases {
  background:
    linear-gradient(180deg, rgba(255,250,240,.38), rgba(220,234,216,.52)),
    radial-gradient(circle at 0% 20%, rgba(47,99,58,.12), transparent 30rem);
}

.case-stack {
  display: grid;
  gap: 30px;
}

.case-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(47, 99, 58, .2);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 240, .88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(47,99,58,.08), transparent 35%);
  pointer-events: none;
}

.case-card.youth::before {
  background: linear-gradient(90deg, rgba(201,103,22,.09), transparent 35%);
}

.case-number {
  position: relative;
  z-index: 1;
  align-self: start;
  width: 54px;
  height: 54px;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  background: rgba(255,250,240,.82);
  color: var(--green);
  border: 1px solid rgba(47,99,58,.24);
  font-weight: 900;
  font-size: .95rem;
  text-align: center;
  writing-mode: horizontal-tb;
  letter-spacing: .06em;
  box-shadow: 0 12px 32px rgba(33,55,39,.08);
}
.case-number.orange {
  color: var(--orange);
  border-color: rgba(201,103,22,.28);
}

.case-content {
  position: relative;
  z-index: 1;
}

.case-content h3 {
  margin-bottom: 4px;
  font-family: "Noto Serif TC", serif;
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
  line-height: 1.12;
}

.case-subtitle {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 1.22rem;
  font-weight: 900;
}

.case-lead {
  max-width: 980px;
  font-size: 1.07rem;
  font-weight: 600;
  color: var(--ink-2);
}

.case-photo {
  min-height: clamp(310px, 34vw, 470px);
  margin: 28px 0;
  border-radius: 28px;
}

.case-photo em {
  position: relative;
  z-index: 1;
  width: fit-content;
  color: var(--ink-3);
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.timeline div, .pillar-grid div, .two-col-list div {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(47,99,58,.16);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 8px;
  font-weight: 900;
  color: var(--green);
}

.timeline h4 {
  margin: 0 0 8px;
  color: var(--green-deep);
  font-size: 1.08rem;
}

.timeline p, .pillar-grid p, .two-col-list p { margin-bottom: 0; color: var(--ink-2); }

.impact-strip {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(47,99,58,.1);
  border: 1px solid rgba(47,99,58,.18);
}
.impact-strip strong { color: var(--green); }
.impact-strip p { margin: 0; color: var(--ink-2); }

.literary-quote {
  margin: 24px 0;
  padding: 26px;
  border-left: 4px solid var(--orange);
  border-radius: 0 22px 22px 0;
  background: rgba(244,223,193,.46);
}

.literary-quote span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-weight: 900;
}

.literary-quote strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Noto Serif TC", serif;
  color: var(--green-deep);
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
}

.literary-quote p {
  margin: 0;
  color: var(--ink-2);
}

.youth-note {
  margin-top: 22px;
  background: rgba(201,103,22,.1);
}

.two-col-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.two-col-list h4 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 1.05rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.pillar-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
}

.pillar-grid h4 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.case-visual {
  display: none;
  position: relative;
  z-index: 1;
  min-height: 270px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(216,230,195,.8), rgba(255,250,240,.85)),
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.9), transparent 52%);
  overflow: hidden;
  border: 1px solid rgba(47,99,58,.16);
}

.case-visual::before {
  content: "";
  position: absolute;
  left: -15%;
  right: -15%;
  bottom: -50px;
  height: 130px;
  border-radius: 50% 50% 0 0;
  background: rgba(47,99,58,.18);
}

.sun {
  position: absolute;
  top: 28px;
  right: 34px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(239, 176, 75, .58);
  box-shadow: 0 0 50px rgba(239, 176, 75, .45);
}

.plant {
  position: absolute;
  bottom: 38px;
  width: 18px;
  height: 105px;
  background: var(--green);
  border-radius: 99px;
  transform-origin: bottom;
}
.plant::before, .plant::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 32px;
  border-radius: 80% 12% 80% 12%;
  background: var(--green-2);
}
.plant::before { top: 22px; left: 11px; transform: rotate(-20deg); }
.plant::after { top: 46px; right: 11px; transform: rotate(200deg); }
.p1 { left: 72px; transform: rotate(-10deg); }
.p2 { left: 135px; height: 135px; }
.p3 { left: 210px; height: 95px; transform: rotate(12deg); }

.youth-visual {
  background:
    linear-gradient(180deg, rgba(244,223,193,.9), rgba(255,250,240,.85)),
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.9), transparent 52%);
}

.book {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 58px;
  height: 120px;
  background: white;
  border-radius: 8px 8px 24px 24px;
  box-shadow: inset 0 -10px 0 rgba(201,103,22,.12), 0 24px 40px rgba(86,56,25,.12);
}
.book::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(201,103,22,.2);
}
.book::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 26px;
  height: 2px;
  background: rgba(201,103,22,.24);
  box-shadow: 0 18px 0 rgba(201,103,22,.18), 0 36px 0 rgba(201,103,22,.13);
}

.spark {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--orange);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
}
.s1 { top: 50px; left: 70px; }
.s2 { top: 36px; right: 76px; transform: scale(.8); }
.s3 { top: 120px; right: 42px; transform: scale(1.15); }

.design-principles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-bottom: 26px;
}

.design-principles article {
  min-height: 220px;
}

.faculty-panel {
  margin-bottom: 28px;
}

.faculty-grid {
  grid-template-columns: repeat(4, 1fr);
}

.faculty-grid span {
  display: block;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(220,234,216,.56);
  color: var(--green-deep);
  font-weight: 900;
}

.course-feature {
  display: grid;
  grid-template-columns: .9fr .58fr 1.1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  background: rgba(255,250,240,.8);
  box-shadow: 0 14px 45px rgba(33, 55, 39, .08);
}
.course-photo {
  min-height: 180px;
  border-radius: 22px;
}
.course-feature h3 {
  margin-bottom: 8px;
  font-family: "Noto Serif TC", serif;
  font-size: 2rem;
}
.badge-list span {
  background: rgba(47,99,58,.09);
  box-shadow: none;
}

.daily-prescriptions {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 28px;
}

.daily-prescriptions article {
  padding: 24px;
}

.daily-prescriptions h3 {
  margin-bottom: 2px;
  color: var(--green-deep);
}

.daily-prescriptions p {
  margin: 12px 0 0;
  color: var(--ink-2);
  font-weight: 700;
}

.course-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(47,99,58,.18);
  background: rgba(255,250,240,.82);
}

.course-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

.course-table th, .course-table td {
  padding: 22px;
  border-bottom: 1px solid rgba(47,99,58,.14);
  border-right: 1px solid rgba(47,99,58,.1);
  vertical-align: top;
}

.course-table thead th {
  background: var(--green);
  color: white;
  text-align: left;
  font-size: 1.05rem;
  letter-spacing: .04em;
}

.course-table tbody th {
  width: 21%;
  color: var(--green);
  font-size: 1.08rem;
  text-align: left;
  background: rgba(220,234,216,.48);
}

.course-table tbody th small {
  display: block;
  margin-top: 5px;
  color: var(--ink-3);
  font-size: .78rem;
  font-weight: 800;
}

.course-table td strong {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
}

.course-table tbody tr:nth-child(even) td {
  background: rgba(255,255,255,.34);
}

.evaluation {
  background:
    linear-gradient(120deg, rgba(29,91,122,.1), rgba(47,99,58,.1)),
    rgba(255,250,240,.34);
}

.eval-grid {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 42px;
  align-items: start;
}

.evaluation-map {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.evaluation-map div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,250,240,.72);
  border: 1px solid rgba(47,99,58,.18);
}
.evaluation-map strong {
  display: block;
  color: var(--green);
}
.evaluation-map span {
  color: var(--ink-2);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.tool-grid article {
  background: rgba(255,255,255,.66);
}

.tool-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.3rem;
  color: var(--blue);
}

.tool-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 900;
}

.evaluation-note {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: rgba(255,250,240,.78);
  color: var(--ink-2);
  font-weight: 700;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.poster-grid article {
  background: rgba(255,250,240,.82);
}
.poster-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  color: white;
  background: var(--green);
  font-weight: 900;
}
.poster-grid h3 {
  font-family: "Noto Serif TC", serif;
  font-size: 1.7rem;
}

.sources {
  background: rgba(255,250,240,.48);
}
.source-list {
  display: grid;
  gap: 14px;
}
.source-list a {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(47,99,58,.18);
  border-radius: 20px;
  background: rgba(255,255,255,.58);
}
.source-list strong {
  color: var(--green);
}
.source-list span {
  color: var(--ink-2);
}

.reference-section {
  padding: 76px 0 64px;
  background: rgba(255, 250, 240, .72);
  border-top: 1px solid rgba(47, 99, 58, .16);
}

.reference-heading {
  display: grid;
  grid-template-columns: minmax(220px, .36fr) 1fr;
  gap: clamp(26px, 5vw, 80px);
  align-items: end;
  margin-bottom: 28px;
}

.reference-heading h2 {
  margin: 0;
  font-family: "Noto Serif TC", serif;
  font-size: clamp(1.85rem, 3.4vw, 3.4rem);
  color: var(--green-deep);
  line-height: 1.15;
}

.reference-list {
  border-top: 1px solid rgba(47, 99, 58, .24);
}

.reference-list div {
  display: grid;
  grid-template-columns: minmax(240px, .4fr) 1fr;
  gap: clamp(22px, 4vw, 64px);
  padding: 22px 0;
  color: inherit;
  border-bottom: 1px solid rgba(47, 99, 58, .16);
}

.reference-list strong {
  color: var(--green);
  font-weight: 900;
}

.reference-list a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(47,99,58,.18);
}

.reference-list a:hover {
  color: var(--orange);
  border-bottom-color: rgba(201,103,22,.42);
}

.reference-list span {
  color: var(--ink-2);
}

.reference-section .container {
  width: var(--container);
}

.reference-heading {
  grid-template-columns: 220px 1fr;
  gap: clamp(34px, 6vw, 92px);
}

.reference-heading h2 {
  max-width: none;
}

.reference-list div {
  grid-template-columns: minmax(380px, .46fr) 1fr;
  gap: clamp(34px, 5vw, 80px);
  align-items: baseline;
  padding: 20px 0;
}

.reference-list strong,
.reference-list span {
  line-height: 1.55;
}

.gallery {
  background:
    radial-gradient(circle at 12% 14%, rgba(201,103,22,.1), transparent 22rem),
    radial-gradient(circle at 86% 70%, rgba(47,99,58,.12), transparent 24rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 18px;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.closing {
  padding-bottom: 110px;
}

.closing-card {
  padding: clamp(36px, 6vw, 72px);
  border-radius: 44px;
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,.2), transparent 20rem),
    linear-gradient(135deg, #16351f, #2f633a 58%, #1d5b7a);
  box-shadow: var(--shadow);
  text-align: center;
}

.closing-card p {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.closing-card h2 { color: white; }

.closing-lead {
  max-width: 820px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.86);
  font-weight: 650;
}

.closing-tags {
  justify-content: center;
  margin-top: 28px;
}

.closing-tags span {
  color: white;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  box-shadow: none;
}

.site-footer {
  padding: 34px 0;
  color: rgba(22, 53, 31, .86);
  border-top: 1px solid var(--line);
  background: rgba(255,250,240,.74);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-grid p { margin: 4px 0 0; }
.design-credit {
  margin-top: 14px !important;
  color: rgba(22, 53, 31, .48);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.design-credit a {
  color: rgba(22, 53, 31, .62);
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 53, 31, .18);
}

.design-credit a:hover {
  color: var(--green);
  border-bottom-color: rgba(47, 99, 58, .45);
}

address {
  font-style: normal;
  text-align: right;
  font-size: 14px;
}
address a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .58;
  background:
    radial-gradient(circle, rgba(255, 226, 180, .42) 0 16%, rgba(107, 159, 91, .14) 36%, transparent 70%);
  mix-blend-mode: multiply;
  transform: translate(-999px, -999px);
  transition: transform .08s ease-out;
}

.music-toggle {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1000;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 99, 58, .18);
  border-radius: 50%;
  color: var(--green-deep);
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.96), rgba(255,255,255,.38) 34%, transparent 56%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,250,240,.9));
  box-shadow:
    0 18px 42px rgba(22, 53, 31, .16),
    inset 0 0 0 6px rgba(255, 250, 240, .72);
  cursor: pointer;
}

.music-toggle::after {
  content: "音樂";
  position: absolute;
  right: 76px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,250,240,.86);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateX(8px);
  transition: .2s ease;
  white-space: nowrap;
}

.music-toggle:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.music-ring {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(47, 99, 58, .26);
  border-radius: 50%;
}

.music-icon {
  position: relative;
  z-index: 1;
  font-family: "Noto Serif TC", serif;
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(-1px);
}

.music-toggle.is-playing .music-ring {
  animation: musicPulse 2.8s ease-in-out infinite;
}

@keyframes musicPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 250, 240, .72), 0 0 0 0 rgba(47, 99, 58, .12);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 250, 240, 0), 0 0 0 18px rgba(47, 99, 58, 0);
    transform: scale(1.08);
  }
}

/* V4 visual rhythm: fewer boxes, more lines, bands, and open editorial spacing. */
.overview-grid article {
  padding: 10px 28px 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-top: 2px solid rgba(47,99,58,.22);
}

.concept-layout {
  gap: clamp(34px, 6vw, 72px);
}

.definition-card {
  padding: 0 clamp(24px, 4vw, 56px) 0 0;
  border: 0;
  border-right: 1px solid rgba(47,99,58,.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.value-list {
  gap: 0;
}

.value-list article {
  padding: 26px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(47,99,58,.18);
}

.value-list article:first-child {
  padding-top: 0;
}

.icon-line {
  border-radius: 50%;
  background: rgba(220,234,216,.9);
  box-shadow: inset 0 0 0 1px rgba(47,99,58,.1);
}

.history-grid {
  position: relative;
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid rgba(47,99,58,.28);
}

.history-grid article {
  position: relative;
  padding: 28px 28px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.history-grid article::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(201,103,22,.12);
}

.prescription-panel,
.faculty-panel {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(220,234,216,.55), rgba(255,250,240,.18));
  box-shadow: none;
  border-top: 1px solid rgba(47,99,58,.2);
  border-bottom: 1px solid rgba(47,99,58,.16);
}

.prescription-grid article {
  min-height: auto;
  padding: 6px 18px 6px 0;
  border-radius: 0;
  background: transparent;
  border-left: 2px solid rgba(47,99,58,.18);
  padding-left: 18px;
}

.context-grid article {
  padding: 28px 30px 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-top: 2px solid rgba(47,99,58,.2);
}

.case-card {
  background:
    linear-gradient(90deg, rgba(255,250,240,.92), rgba(255,250,240,.72));
}

.timeline div,
.two-col-list div,
.pillar-grid div {
  padding: 20px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  border-top: 1px solid rgba(47,99,58,.2);
}

.impact-strip {
  border: 0;
  border-radius: 0;
  background: transparent;
  border-left: 4px solid var(--orange);
  padding: 10px 0 10px 22px;
}

.design-principles {
  gap: 0;
  border-top: 1px solid rgba(47,99,58,.22);
}

.design-principles article {
  min-height: 190px;
  padding: 24px 20px 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-right: 1px solid rgba(47,99,58,.16);
}

.design-principles article:last-child {
  border-right: 0;
}

.faculty-grid span {
  padding: 10px 0;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid rgba(47,99,58,.16);
}

.course-feature {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-top: 1px solid rgba(47,99,58,.18);
  border-bottom: 1px solid rgba(47,99,58,.16);
}

.daily-prescriptions {
  gap: 0;
  border-top: 1px solid rgba(47,99,58,.2);
}

.daily-prescriptions article {
  padding: 24px 22px 12px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-right: 1px solid rgba(47,99,58,.15);
}

.daily-prescriptions article:last-child {
  border-right: 0;
}

.tool-grid article {
  padding: 22px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(47,99,58,.18);
}

.gallery-grid .photo-placeholder,
.image-band .photo-placeholder,
.case-photo,
.course-photo {
  box-shadow: 0 18px 44px rgba(33,55,39,.08);
}

/* Longer exhibition rhythm: fewer side-by-side fragments, more narrative flow. */
.section {
  padding: 132px 0;
}

.section-heading {
  margin-bottom: 64px;
}

.overview-grid {
  max-width: 980px;
  grid-template-columns: 1fr;
  gap: 0;
}

.overview-grid article {
  display: grid;
  grid-template-columns: 130px 260px 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid rgba(47,99,58,.22);
}

.overview-grid article:last-child {
  border-bottom: 1px solid rgba(47,99,58,.22);
}

.overview-grid .number {
  margin: 0;
  font-size: 4.3rem;
}

.concept-layout {
  grid-template-columns: 1fr;
}

.definition-card {
  max-width: 900px;
  padding: 0 0 42px;
  border-right: 0;
  border-bottom: 1px solid rgba(47,99,58,.22);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: none;
}

.value-list article {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 76px auto 1fr;
  align-items: start;
  min-height: 260px;
  padding: 30px 28px;
  border: 1px solid rgba(47,99,58,.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(47,99,58,.1), transparent 8rem),
    rgba(255,250,240,.72);
  box-shadow: 0 16px 42px rgba(33,55,39,.07);
}

.value-list article h3,
.value-list article p {
  grid-column: auto;
}

.value-list article h3 {
  margin-top: 0;
}

.icon-line {
  grid-row: auto;
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  border-radius: 50%;
}

.icon-line svg,
.timeline span svg,
.pillar-grid span svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.history-grid {
  grid-template-columns: 1fr;
  max-width: 960px;
}

.history-grid article {
  display: grid;
  grid-template-columns: 190px 280px 1fr;
  gap: 28px;
  padding: 34px 0 34px 34px;
  border-bottom: 1px solid rgba(47,99,58,.16);
}

.prescription-panel,
.faculty-panel {
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 44px 0;
  background: transparent;
}

.prescription-panel h3,
.faculty-panel h3 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.prescription-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.prescription-grid article {
  display: grid;
  grid-template-columns: 210px 150px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-left: 0;
  border-top: 1px solid rgba(47,99,58,.18);
}

.context-grid {
  grid-template-columns: 1fr;
  max-width: 980px;
}

.context-grid article {
  display: grid;
  grid-template-columns: 250px 260px 1fr;
  gap: 34px;
  align-items: start;
  min-height: auto;
  padding: 38px 0;
}

.context-grid strong {
  margin: 0;
}

.case-stack {
  gap: 74px;
}

.case-card {
  padding: clamp(42px, 6vw, 72px);
}

.timeline,
.two-col-list,
.pillar-grid {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.timeline div,
.two-col-list div,
.pillar-grid div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}

.timeline span,
.two-col-list h4,
.pillar-grid span {
  grid-row: span 2;
}

.pillar-grid span {
  margin: 0;
}

.timeline,
.pillar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  gap: 18px;
}

.timeline div,
.pillar-grid div {
  display: block;
  min-height: 220px;
  padding: 28px 26px;
  border: 1px solid rgba(47,99,58,.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 12%, rgba(201,103,22,.1), transparent 7rem),
    rgba(255,250,240,.72);
  box-shadow: 0 16px 42px rgba(33,55,39,.07);
}

.timeline span,
.pillar-grid span {
  grid-row: auto;
}

.timeline span {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 14px;
  align-items: center;
  color: var(--green);
}

.timeline span svg {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 50%;
  color: var(--orange);
  background: rgba(244,223,193,.72);
  border: 1px solid rgba(201,103,22,.18);
}

.timeline span b {
  line-height: 1.2;
}

.timeline span small {
  margin-top: 2px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.timeline h4,
.pillar-grid h4 {
  margin-top: 16px;
}

.pillar-grid span {
  width: 54px;
  height: 54px;
}

.pillar-grid span {
  color: var(--green);
}

.pillar-grid span svg {
  width: 28px;
  height: 28px;
}

.design-principles {
  grid-template-columns: 1fr;
  width: 100%;
  max-width: none;
  gap: 0;
  border-top: 0;
}

.design-principles article {
  display: grid;
  grid-template-columns: 170px minmax(260px, 360px) 1fr;
  gap: clamp(28px, 5vw, 72px);
  min-height: auto;
  padding: 38px 0;
  border-right: 0;
  border-top: 1px solid rgba(47,99,58,.2);
}

.design-principles article:last-child {
  border-bottom: 1px solid rgba(47,99,58,.2);
}

.design-principles .number {
  margin: 0;
  font-size: 4.2rem;
}

.faculty-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 54px;
}

.faculty-grid span {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: baseline;
  padding: 18px 0;
}

.faculty-grid small {
  margin: 0;
}

.course-feature {
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 48px 0;
}

.course-photo {
  min-height: 360px;
}

.badge-list {
  max-width: 760px;
}

.daily-prescriptions {
  grid-template-columns: 1fr;
  width: 100%;
  max-width: none;
}

.daily-prescriptions article {
  display: grid;
  grid-template-columns: 170px minmax(260px, 340px) minmax(190px, 260px) 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: baseline;
  padding: 30px 0;
  border-right: 0;
  border-top: 1px solid rgba(47,99,58,.18);
}

.daily-prescriptions article:last-child {
  border-bottom: 1px solid rgba(47,99,58,.18);
}

.daily-prescriptions span,
.daily-prescriptions h3,
.daily-prescriptions small,
.daily-prescriptions p {
  margin: 0;
}

.course-table-wrap {
  margin-top: 72px;
}

.eval-grid {
  grid-template-columns: 1fr;
  gap: 56px;
}

.evaluation-map {
  max-width: 980px;
}

.evaluation-map div {
  display: block;
  min-height: 190px;
  padding: 30px 28px;
  border: 1px solid rgba(47,99,58,.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(201,103,22,.1), transparent 8rem),
    rgba(255,250,240,.8);
  box-shadow: 0 18px 48px rgba(33,55,39,.08);
  border-top: 1px solid rgba(47,99,58,.16);
}

.evaluation-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: none;
  margin-top: 34px;
}

.evaluation-map strong {
  margin-bottom: 18px;
  font-family: "Noto Serif TC", serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.evaluation-map span {
  display: block;
  line-height: 1.7;
}

.tool-grid {
  grid-template-columns: 1fr;
  width: 100%;
  max-width: none;
}

.tool-grid article {
  display: grid;
  grid-template-columns: 180px minmax(260px, 360px) 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.evaluation-note {
  max-width: none;
}

/* Polygon illustration accents: small, quiet, and decorative. */
.polygon-accent {
  display: block;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 14px 26px rgba(33, 55, 39, .12));
}

.hero-card > *:not(.polygon-accent),
.definition-card > *:not(.polygon-accent),
.prescription-panel > *:not(.polygon-accent),
.faculty-panel > *:not(.polygon-accent),
.section-heading > *:not(.polygon-accent) {
  position: relative;
  z-index: 1;
}

.polygon-hero {
  position: absolute;
  right: -18px;
  bottom: -8px;
  z-index: 0;
  width: min(38%, 170px);
  opacity: .46;
}

.overview-grid article {
  position: relative;
}

.overview-grid article .polygon-inline {
  position: absolute;
  right: -132px;
  top: 18px;
  z-index: 0;
  width: 118px;
  opacity: .38;
}

.overview-grid article > *:not(.polygon-accent) {
  position: relative;
  z-index: 1;
}

.polygon-corner {
  position: absolute;
  right: -178px;
  top: 8px;
  width: 138px;
  opacity: .34;
}

.prescription-panel,
.faculty-panel,
.section-heading,
.course-feature,
.eval-grid > div:first-child,
.closing-card {
  position: relative;
}

.polygon-panel {
  position: absolute;
  right: 0;
  top: 20px;
  width: 160px;
  opacity: .34;
}

.polygon-panel.left {
  right: 16px;
  top: 24px;
  width: 150px;
}

.polygon-heading {
  position: absolute;
  right: -204px;
  top: -22px;
  width: 132px;
  opacity: .34;
}

.case-visual {
  display: block;
  position: absolute;
  right: clamp(22px, 4vw, 56px);
  top: clamp(22px, 4vw, 44px);
  z-index: 0;
  width: 170px;
  min-height: 170px;
  border: 0;
  background: transparent;
  opacity: .34;
}

.case-visual::before,
.case-visual .sun,
.case-visual .plant,
.case-visual .book,
.case-visual .spark {
  display: none;
}

.polygon-case {
  width: 100%;
}

.course-feature .polygon-inline {
  position: absolute;
  right: 24px;
  top: 26px;
  z-index: 0;
  width: 118px;
  opacity: .42;
}

.course-feature > *:not(.polygon-accent) {
  position: relative;
  z-index: 1;
}

.eval-grid .polygon-heading {
  right: 0;
  top: -42px;
  width: 150px;
  opacity: .3;
}

@media (max-width: 1060px) {
  .hero-grid,
  .eval-grid,
  .case-card,
  .concept-layout,
  .course-feature,
  .prescription-panel,
  .faculty-panel {
    grid-template-columns: 1fr;
  }
  .history-grid,
  .context-grid,
  .prescription-grid,
  .daily-prescriptions {
    grid-template-columns: 1fr;
  }
  .design-principles,
  .faculty-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .case-number {
    min-height: auto;
    width: fit-content;
    writing-mode: horizontal-tb;
  }
  .case-visual { min-height: 220px; }
  nav { display: none; }

  .overview-grid article,
  .value-list article,
  .history-grid article,
  .prescription-grid article,
  .context-grid article,
  .timeline div,
  .two-col-list div,
  .pillar-grid div,
  .design-principles article,
  .daily-prescriptions article,
  .tool-grid article,
  .faculty-grid span {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .evaluation-map {
    grid-template-columns: 1fr;
  }

  .timeline,
  .pillar-grid,
  .value-list {
    grid-template-columns: 1fr;
  }

  .definition-card {
    border-bottom: 1px solid rgba(47,99,58,.22);
  }
}

@media (max-width: 820px) {
  .overview-grid,
  .design-principles,
  .image-band,
  .history-grid,
  .context-grid,
  .prescription-grid,
  .faculty-grid,
  .daily-prescriptions,
  .timeline,
  .pillar-grid,
  .two-col-list,
  .poster-grid,
  .tool-grid,
  .source-list a,
  .reference-heading,
  .reference-list div {
    grid-template-columns: 1fr;
  }

  .value-list article {
    grid-template-columns: 1fr;
  }
  .value-list article p,
  .value-list article h3 {
    grid-column: auto;
  }
  .icon-line {
    grid-row: auto;
  }
  .note-box {
    display: block;
  }
  .note-box strong {
    display: block;
    margin-bottom: 8px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .gallery-grid .tall,
  .gallery-grid .wide {
    grid-row: auto;
    grid-column: auto;
  }

  .polygon-heading,
  .polygon-corner,
  .polygon-panel,
  .case-visual {
    opacity: .24;
  }

  .overview-grid article .polygon-inline,
  .polygon-corner,
  .polygon-heading {
    right: 0;
  }

  .overview-grid article .polygon-inline {
    top: 12px;
    opacity: .2;
  }
}

@media (max-width: 640px) {
  :root { --container: min(100vw - 24px, 1120px); }
  .section { padding: 64px 0; }
  .hero { padding-top: 92px; min-height: auto; }
  .hero-card, .definition-card, .course-feature, .note-box { padding: 24px; }
  .reference-section { padding: 54px 0 48px; }
  .polygon-accent:not(.polygon-inline) { display: none; }
  .course-feature .polygon-inline {
    width: 82px;
  }
  .mini-metrics { grid-template-columns: 1fr; }
  .footer-grid { display: block; }
  address { text-align: left; margin-top: 16px; }
  body { cursor: auto; }
  .cursor-glow { display: none; }
  .music-toggle {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }
}

@media print {
  @page {
    size: A4 portrait;
    margin: 10mm;
  }

  html, body { background: white; }

  body::before,
  .cursor-glow,
  .music-toggle,
  .site-header,
  .skip-link,
  .leaf,
  .site-footer {
    display: none !important;
  }

  .section {
    break-inside: avoid;
    page-break-inside: avoid;
    padding: 14mm 0;
  }

  .hero {
    min-height: auto;
    padding: 8mm 0 18mm;
  }

  .container { width: 100%; }

  .hero-grid,
  .eval-grid,
  .concept-layout {
    grid-template-columns: 1fr;
    gap: 10mm;
  }

  .case-card {
    grid-template-columns: 20mm 1fr;
    box-shadow: none;
    break-inside: avoid;
  }

  .case-visual { display: none; }

  .overview-grid,
  .design-principles,
  .timeline,
  .pillar-grid,
  .two-col-list,
  .poster-grid,
  .tool-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card,
  .definition-card,
  .course-feature,
  .note-box,
  .overview-grid article,
  .value-list article,
  .design-principles article,
  .tool-grid article,
  .poster-grid article,
  .course-table-wrap,
  .case-card,
  .closing-card {
    box-shadow: none;
  }

  h1 { font-size: 42pt; }

  .section-heading h2, .eval-grid h2, .closing-card h2 {
    font-size: 26pt;
  }

  a { text-decoration: none; }
}

@media screen {
  .why-now .context-grid {
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }

  .why-now .context-grid article {
    display: block;
    min-height: 360px;
    padding: 38px 36px;
    border: 1px solid rgba(47, 99, 58, .18);
    border-radius: 30px;
    background:
      radial-gradient(circle at 88% 12%, rgba(201,103,22,.1), transparent 10rem),
      rgba(255, 250, 240, .78);
    box-shadow: 0 24px 70px rgba(33, 55, 39, .1);
  }

  .why-now .context-grid strong {
    margin-bottom: 20px;
  }

  .why-now .context-grid h3 {
    margin-bottom: 14px;
    font-size: 1.28rem;
  }

  .why-now .context-grid small {
    margin-top: 28px;
  }

  .closing {
    padding: 0;
  }

  .closing .container {
    width: 100%;
  }

  .closing-card {
    width: 100%;
    border-radius: 0;
    padding: clamp(76px, 10vw, 150px) max(7vw, 32px);
    box-shadow: none;
  }

  .closing-card h2,
  .closing-lead {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }

  .closing-lead {
    font-size: 1.18rem;
    line-height: 1.9;
  }
}

@media screen and (max-width: 820px) {
  .why-now .context-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-now .context-grid article {
    min-height: auto;
    padding: 28px 24px;
  }

  .why-now .context-grid strong {
    margin-bottom: 12px;
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .why-now .context-grid small {
    margin-top: 18px;
  }

  .case-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 22px;
    overflow: visible;
  }

  .case-number,
  .case-number.orange {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    writing-mode: horizontal-tb;
    place-self: start;
    font-size: .9rem;
    line-height: 1;
  }

  .case-content h3 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .case-subtitle {
    font-size: 1rem;
    line-height: 1.45;
  }

  .case-photo {
    min-height: 260px;
  }

  .case-photo strong {
    white-space: normal;
    max-width: 100%;
    font-size: clamp(1.15rem, 5vw, 1.55rem);
  }

  .course-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .course-table,
  .course-table thead,
  .course-table tbody,
  .course-table tr,
  .course-table th,
  .course-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .course-table thead {
    display: none;
  }

  .course-table tr {
    margin-bottom: 18px;
    border: 1px solid rgba(47,99,58,.18);
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255,250,240,.82);
    box-shadow: 0 16px 42px rgba(33,55,39,.07);
  }

  .course-table tbody th,
  .course-table td {
    width: 100%;
    padding: 18px 20px;
    border-right: 0;
  }

  .course-table tbody th {
    background: rgba(220,234,216,.62);
    border-bottom: 1px solid rgba(47,99,58,.14);
  }

  .course-table td::before {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
  }

  .course-table td:nth-child(2)::before {
    content: "心理層面 Psychological";
  }

  .course-table td:nth-child(3)::before {
    content: "社會層面 Social";
  }

  .course-table td:nth-child(4)::before {
    content: "生理層面 Physiological";
  }
}
