@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap');

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

  :root {
    --brand:       #01968D;
    --brand-dk:    #017C75;
    --brand-lt:    #E6F5F4;
    --brand-xl:    #F4FBFA;
    --peach:       #F4A261;
    --peach-lt:    #FFF1E3;
    --cream:       #FDF9F3;
    --ink:         #1F2937;
    --mid:         #556670;
    --line:        #E7EDED;
    --white:       #FFFFFF;
    --radius:      20px;
    --shadow-sm:   0 2px 10px rgba(1,150,141,.06);
    --shadow:      0 10px 32px rgba(1,150,141,.12);
    --shadow-lg:   0 20px 50px rgba(1,150,141,.15);
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
    color: var(--ink); background: var(--cream); line-height: 1.75;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253,249,243,.92); backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(1,150,141,.08);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 110px;
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; }
  .nav-logo img { height: 98px; width: auto; transition: .25s; }
  .nav-logo:hover img { transform: scale(1.04); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: var(--ink); font-size: 15px; font-weight: 500;
    padding: 8px 0; border-bottom: 2px solid transparent; transition: .2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--brand); border-bottom-color: var(--brand); }
  .nav-cta {
    background: var(--brand); color: white;
    padding: 11px 26px; border-radius: 50px; font-size: 14px; font-weight: 700;
    transition: .25s; display: inline-flex; align-items: center; gap: 6px;
  }
  .nav-cta:hover { background: var(--brand-dk); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(1,150,141,.3); }

  /* ── PAGE HERO ── */
  .page-hero {
    padding: 180px 5% 80px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--brand-xl) 55%, var(--peach-lt) 100%);
    text-align: center;
  }
  .page-hero-blob {
    position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35; z-index: 0;
  }
  .page-hero-blob.b1 { width: 420px; height: 420px; background: var(--brand-lt); top: -120px; right: -80px; }
  .page-hero-blob.b2 { width: 300px; height: 300px; background: var(--peach-lt); bottom: -80px; left: -60px; }
  .page-hero-inner { max-width: 1040px; margin: 0 auto; position: relative; z-index: 1; }
  .breadcrumb {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--mid); margin-bottom: 18px;
  }
  .breadcrumb a { color: var(--brand); font-weight: 700; }
  .breadcrumb .sep { opacity: .4; }
  .page-hero h1 {
    font-size: clamp(34px, 4.6vw, 58px); font-weight: 900; line-height: 1.2;
    color: var(--ink); margin-bottom: 22px; letter-spacing: -.5px;
  }
  .page-hero h1 em {
    font-style: normal;
    background: linear-gradient(120deg, var(--brand) 0%, var(--peach) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .page-hero-sub {
    font-size: 17px; color: var(--mid); line-height: 1.95; max-width: 700px; margin: 0 auto;
  }

  /* ── SECTIONS ── */
  section { padding: 100px 5%; position: relative; }
  .inner { max-width: 1240px; margin: 0 auto; }
  .eyebrow {
    display: inline-block; color: var(--brand); font-size: 13px; font-weight: 800;
    letter-spacing: 3px; margin-bottom: 14px; text-transform: uppercase;
  }
  .eyebrow::before { content: '— '; opacity: .4; }
  .sec-title {
    font-size: clamp(28px, 3.4vw, 42px); font-weight: 900; color: var(--ink);
    line-height: 1.25; margin-bottom: 16px; letter-spacing: -.5px;
  }
  .sec-desc { font-size: 16px; color: var(--mid); max-width: 640px; line-height: 1.9; }
  .center { text-align: center; }
  .center .sec-desc { margin: 0 auto; }

  /* ── BRAND STORY ── */
  .story { background: white; }
  .story-intro {
    max-width: 820px; margin: 24px 0 0;
    font-size: 16.5px; color: var(--mid); line-height: 1.95;
  }
  .story-intro strong { color: var(--ink); font-weight: 700; }
  .story-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px;
  }
  .story-card {
    padding: 44px 32px; border-radius: var(--radius); position: relative; overflow: hidden;
    background: linear-gradient(160deg, var(--brand-lt) 0%, var(--brand-xl) 100%);
    border: 1px solid rgba(1,150,141,.08); transition: .35s;
  }
  .story-card:nth-child(2) { background: linear-gradient(160deg, var(--peach-lt) 0%, #FFFAF2 100%); border-color: rgba(244,162,97,.15); }
  .story-card:nth-child(3) { background: linear-gradient(160deg, #EEF5FF 0%, #F5FAFF 100%); border-color: rgba(74,127,196,.12); }
  .story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .story-char {
    font-size: 120px; font-weight: 900; line-height: 1;
    color: var(--brand); opacity: .15; letter-spacing: -6px;
    position: absolute; top: 10px; right: 24px;
  }
  .story-card:nth-child(2) .story-char { color: var(--peach); }
  .story-card:nth-child(3) .story-char { color: #4A7FC4; }
  .story-eyebrow {
    font-size: 12px; font-weight: 800; color: var(--brand); letter-spacing: 2px; margin-bottom: 10px;
  }
  .story-card:nth-child(2) .story-eyebrow { color: var(--peach); }
  .story-card:nth-child(3) .story-eyebrow { color: #4A7FC4; }
  .story-title { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
  .story-desc { font-size: 14.5px; color: var(--mid); line-height: 1.9; position: relative; z-index: 1; }

  /* ── SERVICES ── */
  .services { background: var(--brand-xl); }
  .svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 56px; }
  .svc-card {
    background: white; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 38px 32px; transition: .3s; display: flex; gap: 22px;
  }
  .svc-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-4px); }
  .svc-icon {
    width: 64px; height: 64px; background: var(--brand-lt); border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; flex-shrink: 0;
  }
  .svc-card:nth-child(2) .svc-icon { background: var(--peach-lt); }
  .svc-card:nth-child(3) .svc-icon { background: #EEF5FF; }
  .svc-card:nth-child(4) .svc-icon { background: #F9F1FF; }
  .svc-body { flex: 1; }
  .svc-title { font-size: 19px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
  .svc-desc { font-size: 14.5px; color: var(--mid); line-height: 1.85; margin-bottom: 14px; }
  .svc-link {
    font-size: 13.5px; font-weight: 800; color: var(--brand);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .svc-link::after { content: '→'; transition: .2s; }
  .svc-card:hover .svc-link::after { transform: translateX(5px); }

  /* ── TEAM ── */
  .team { background: white; }
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
  .team-card {
    background: var(--cream); border-radius: var(--radius); padding: 36px 28px; text-align: center;
    border: 1px solid var(--line); transition: .3s;
  }
  .team-card:hover { background: white; border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-4px); }
  .team-avatar {
    width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 22px;
    overflow: hidden; border: 4px solid white; box-shadow: var(--shadow-sm);
  }
  .team-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .team-name { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
  .team-role { font-size: 13px; color: var(--brand); font-weight: 700; margin-bottom: 16px; letter-spacing: 1px; }
  .team-bio { font-size: 14px; color: var(--mid); line-height: 1.85; text-align: left; }

  /* ── TUTORS (Auto Marquee) ── */
  .tutors { background: var(--brand-xl); text-align: center; overflow: hidden; padding: 100px 0; }
  .tutors .inner { padding: 0 5%; }
  .tutors-marquee {
    margin-top: 48px; overflow: hidden; position: relative;
    mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent);
  }
  .tutors-track {
    display: flex; gap: 28px; width: max-content;
    animation: tutorsMarquee 45s linear infinite;
  }
  .tutors-marquee:hover .tutors-track { animation-play-state: paused; }
  @keyframes tutorsMarquee { to { transform: translateX(-50%); } }
  .tutor-chip { flex: 0 0 150px; text-align: center; }
  .tutor-avatar {
    width: 140px; height: 140px; border-radius: 50%; margin: 0 auto 14px;
    overflow: hidden; border: 4px solid white; box-shadow: var(--shadow-sm);
    transition: .3s;
  }
  .tutor-chip:hover .tutor-avatar { transform: scale(1.05); border-color: var(--brand); }
  .tutor-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .tutor-name { font-size: 14.5px; font-weight: 700; color: var(--ink); }

  /* ── TUTORS FULL GRID ── */
  .tutors-grid-wrap { background: white; }
  .tg-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px 22px; margin-top: 48px;
  }
  .tg-chip { text-align: center; }
  .tg-avatar {
    width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
    border: 3px solid var(--cream); box-shadow: var(--shadow-sm); margin-bottom: 12px; transition: .3s;
  }
  .tg-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .tg-chip:hover .tg-avatar { border-color: var(--brand); transform: scale(1.04); }
  .tg-name { font-size: 14px; font-weight: 700; color: var(--ink); }

  /* ── MEDIA (YouTube / Facebook) ── */
  .media {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dk) 100%);
    color: white; text-align: center; overflow: hidden; position: relative;
  }
  .media::before, .media::after {
    content: ''; position: absolute; border-radius: 50%;
    background: rgba(255,255,255,.08); pointer-events: none;
  }
  .media::before { width: 400px; height: 400px; top: -100px; left: -100px; }
  .media::after { width: 300px; height: 300px; bottom: -100px; right: -80px; }
  .media .inner { position: relative; z-index: 1; }
  .media .eyebrow { color: rgba(255,255,255,.8); }
  .media .sec-title { color: white; }
  .media-desc { color: rgba(255,255,255,.85); font-size: 16px; max-width: 640px; margin: 0 auto 48px; line-height: 1.9; }
  .media-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
    max-width: 880px; margin: 0 auto;
  }
  .media-card {
    background: rgba(255,255,255,.08); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius);
    padding: 36px 32px; transition: .3s; text-align: left;
    display: flex; align-items: center; gap: 22px;
  }
  .media-card:hover { background: white; color: var(--brand-dk); transform: translateY(-4px); box-shadow: 0 18px 42px rgba(0,0,0,.18); }
  .media-icon {
    width: 60px; height: 60px; background: rgba(255,255,255,.14); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0;
    transition: .3s;
  }
  .media-card:hover .media-icon { background: var(--brand-lt); }
  .media-name { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
  .media-handle { font-size: 13px; opacity: .8; }

  /* ── CTA BANNER ── */
  .cta-banner { background: var(--cream); text-align: center; }
  .cta-box {
    background: white; border: 1.5px solid var(--brand-lt); border-radius: var(--radius);
    padding: 60px 5%; max-width: 980px; margin: 0 auto; box-shadow: var(--shadow-sm);
  }
  .cta-box h3 { font-size: 28px; font-weight: 900; color: var(--ink); margin-bottom: 14px; }
  .cta-box p { font-size: 15.5px; color: var(--mid); max-width: 560px; margin: 0 auto 28px; line-height: 1.85; }
  .btn-primary {
    background: var(--brand); color: white; padding: 15px 34px; border-radius: 50px;
    font-size: 15px; font-weight: 700;
    box-shadow: 0 10px 28px rgba(1,150,141,.28); transition: .25s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--brand-dk); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(1,150,141,.38); }

  /* ── FOOTER ── */
  footer { background: #0E2C2A; color: rgba(255,255,255,.72); padding: 80px 5% 36px; }
  .footer-grid {
    max-width: 1240px; margin: 0 auto;
    display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
  .footer-brand-logo img { height: 288px; width: auto; filter: brightness(0) invert(1); }
  .footer-brand p { font-size: 13.5px; line-height: 1.9; max-width: 360px; }
  .footer-col h4 { color: white; font-size: 14px; font-weight: 800; margin-bottom: 18px; letter-spacing: 1px; }
  .footer-col a {
    display: block; color: rgba(255,255,255,.6); font-size: 13.5px;
    margin-bottom: 11px; transition: .2s;
  }
  .footer-col a:hover { color: var(--brand); }
  .footer-bottom {
    max-width: 1240px; margin: 24px auto 0;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
    font-size: 12.5px; color: rgba(255,255,255,.5);
  }
  .footer-social { display: flex; gap: 10px; }
  .footer-social a {
    width: 38px; height: 38px; background: rgba(255,255,255,.08);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 13px; font-weight: 700; transition: .2s;
  }
  .footer-social a:hover { background: var(--brand); }

  /* ── DESIGN LABEL ── */
  .design-label {
    position: fixed; bottom: 22px; right: 22px; z-index: 999;
    background: var(--peach); color: white; padding: 11px 22px; border-radius: 50px;
    font-size: 13px; font-weight: 800; box-shadow: 0 6px 22px rgba(244,162,97,.4);
    letter-spacing: 1px;
  }

  /* ── RWD ── */
  @media (max-width: 960px) {
    nav { padding: 0 5%; height: 88px; }
    .nav-links { display: none; }
    .nav-logo img { height: 78px; }
    .story-grid, .svc-grid, .team-grid, .media-grid { grid-template-columns: 1fr; gap: 20px; }
    .tg-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    section { padding: 70px 5%; }
    .page-hero { padding: 150px 5% 60px; }
    .footer-brand-logo img { height: 144px; }
  }
  @media (max-width: 640px) {
    nav { height: 72px; }
    .nav-logo img { height: 64px; }
    .tg-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 120px 5% 60px; }
    .page-hero h1 { font-size: 32px; }
    .footer-brand-logo img { height: 120px; }
  }
