/* ===== 基礎設定 ===== */
:root {
  --brand: #f7b81c;
  --brand-deep: #e0a20a;
  --ink: #141416;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, .55);
  --line: rgba(255, 255, 255, .14);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --max: 1240px;
}

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

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--white);
  background: var(--ink);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  /* 手機禁止縮放：連點兩下不放大、轉向時字級不被系統自動放大 */
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* ===== 背景影片（全站共用） ===== */
.gray .bg { position: fixed; inset: 0; z-index: 0; background: var(--ink); }
.gray .bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.gray .bg video.is-active { opacity: 1; }
.gray .bg-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 22, .86) 0%, rgba(20, 20, 22, .62) 45%, rgba(20, 20, 22, .92) 100%);
  transition: background .8s var(--ease);
}
/* 非首頁時加深並模糊，讓內容易讀 */
.gray.is-inner .bg-mask { background: rgba(20, 20, 22, .94); }
.gray .bg video { transition: opacity 1.4s var(--ease), filter .8s var(--ease), transform .8s var(--ease); }
.gray.is-inner .bg video { filter: blur(3px) saturate(.85); transform: scale(1.05); }
.gray .bg-grain {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 100% 3px;
  opacity: .35;
}

/* ===== Header ===== */
.gray .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* 需高於手機選單(190) 才點得到關閉的 X，但低於切換遮罩(200) */
  z-index: 195;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
/* 內容往下捲時改為不透明，避免文字疊在 header 上難以辨識 */
.gray.is-scrolled .header {
  background: rgba(20, 20, 22, .97);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(0, 0, 0, .35);
}
.gray .container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.gray .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}
.gray .logo { display: flex; align-items: center; gap: 12px; }
.gray .logo-img { width: 38px; height: auto; }
.gray .logo-mark { display: block; font-size: 24px; font-weight: 900; letter-spacing: .1em; line-height: 1.25; }
.gray .logo-mark span { color: var(--brand); }
.gray .logo-sub { display: block; font-size: 11px; letter-spacing: .18em; color: var(--muted); }

.gray .nav { display: flex; align-items: center; gap: 40px; }
.gray .nav a {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
  transition: color .35s var(--ease);
}
.gray .nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--brand);
  transition: width .45s var(--ease);
}
.gray .nav a:hover { color: #fff; }
.gray .nav a:hover::after,
.gray .nav a.is-current::after { width: 100%; }
.gray .nav a.is-current { color: #fff; }

.gray .header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: all .4s var(--ease);
}
.gray .header-cta:hover { background: var(--brand); border-color: var(--brand); color: var(--ink); }
.gray .header-cta svg { width: 18px; height: 18px; }

/* 漢堡按鈕：打開後三條線變成 X，層級高於選單本身才點得到 */
.gray .burger { display: none; width: 32px; height: 24px; position: relative; background: none; border: 0; cursor: pointer; z-index: 210; }
.gray .burger i { position: absolute; left: 0; width: 100%; height: 2px; background: #fff; transition: all .4s var(--ease); }
.gray .burger i:nth-child(1) { top: 2px; }
.gray .burger i:nth-child(2) { top: 11px; }
.gray .burger i:nth-child(3) { top: 20px; }
.gray .burger.is-open i:nth-child(1) { top: 11px; transform: rotate(45deg); background: var(--brand); }
.gray .burger.is-open i:nth-child(2) { opacity: 0; }
.gray .burger.is-open i:nth-child(3) { top: 11px; transform: rotate(-45deg); background: var(--brand); }

/* 手機選單：窗簾式拉下／收起 */
.gray .m-nav {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0 32px;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .7s var(--ease), visibility 0s linear .7s;
}
.gray .m-nav.is-open {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  transition: clip-path .7s var(--ease), visibility 0s;
}
.gray .m-nav::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--brand);
}
.gray .m-nav a {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.01em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.gray .m-nav a span { font-size: 14px; color: var(--brand); letter-spacing: .2em; margin-right: 14px; }
.gray .m-nav.is-open a { opacity: 1; transform: none; }
.gray .m-nav.is-open a:nth-child(1) { transition-delay: .28s; }
.gray .m-nav.is-open a:nth-child(2) { transition-delay: .36s; }
.gray .m-nav.is-open a:nth-child(3) { transition-delay: .44s; }
.gray .m-nav.is-open a:nth-child(4) { transition-delay: .52s; }



/* ===== 切換用窗簾 ===== */
.gray .curtain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 整片推進：前段慢、中段快、末段緩，帶出重量感 */
.gray .curtain {
  background: var(--ink);
  transform: translateY(-100%);
  transition: transform .78s cubic-bezier(.85, 0, .15, 1);
}
.gray .curtain.is-down { transform: translateY(0); }
/* 前緣一道漸層細黃線 */
.gray .curtain::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand) 18%, var(--brand) 82%, transparent);
}

/* 切換遮罩上的 LOGO */
.gray .curtain-logo { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.gray .curtain-logo img {
  width: 86px;
  opacity: 0;
  transform: translateY(18px) scale(.8);
  filter: blur(8px);
  transition: opacity .4s var(--ease), transform .55s var(--ease), filter .45s var(--ease);
}
.gray .curtain.is-down .curtain-logo img { opacity: 1; transform: none; filter: none; transition-delay: .3s; }
.gray .curtain b {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .9em;
  text-indent: .9em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .45s var(--ease), letter-spacing .6s var(--ease), text-indent .6s var(--ease);
}
.gray .curtain b i { font-style: normal; color: var(--brand); }
.gray .curtain.is-down b { opacity: 1; transform: none; letter-spacing: .3em; text-indent: .3em; transition-delay: .42s; }

/* ===== 頁面（滿版、不捲動） ===== */
.gray .stage {
  position: fixed;
  inset: 0;
  z-index: 10;
  transition: transform .78s var(--ease), filter .78s var(--ease);
}
/* 遮罩期間內容微縮失焦，收起時回正，做出景深 */
.gray.is-switching .stage { transform: scale(.965); filter: blur(4px); }
.gray .page {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility 0s linear .5s;
}
.gray .page.is-active { opacity: 1; visibility: visible; transition: opacity .5s var(--ease), visibility 0s; }
.gray .page-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 112px 32px 92px;
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
}
.gray .page-inner::-webkit-scrollbar { display: none; }

/* 進場動畫：由 JS 在遮罩收起後加上 .is-revealed 才播，避免動畫被遮罩蓋掉 */
.gray .reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  filter: blur(4px);
  transition: opacity .7s var(--ease), transform .85s var(--ease), filter .6s var(--ease);
}
.gray .page.is-revealed .reveal { opacity: 1; transform: none; filter: none; }
.gray .page.is-revealed .reveal:nth-child(2) { transition-delay: .1s; }
.gray .page.is-revealed .reveal:nth-child(3) { transition-delay: .2s; }
.gray .page.is-revealed .reveal:nth-child(4) { transition-delay: .3s; }
.gray .page.is-revealed .reveal:nth-child(5) { transition-delay: .4s; }
.gray .page.is-revealed .reveal:nth-child(6) { transition-delay: .5s; }

/* 共用文字 */
.gray .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  letter-spacing: .16em;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
}
.gray .eyebrow::before { content: ''; width: 7px; height: 7px; background: var(--brand); border-radius: 50%; }
.gray .sec-title { font-size: clamp(30px, 3.8vw, 48px); font-weight: 900; letter-spacing: -.01em; line-height: 1.3; margin-top: 14px; }
.gray .sec-desc { color: rgba(255, 255, 255, .68); font-size: 18px; margin-top: 12px; max-width: 620px; }
.gray .sec-head { margin-bottom: clamp(24px, 4vh, 52px); }

/* 按鈕 */
.gray .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  padding: 0 36px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .04em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all .4s var(--ease);
}
.gray .btn-brand { background: var(--brand); color: var(--ink); }
.gray .btn-brand { font-weight: 700; }
.gray .btn-brand:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(247, 184, 28, .34); }
.gray .btn-ghost { border-color: var(--line); color: #fff; }
.gray .btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

/* ===== 首頁 ===== */
.gray .home .page-inner { text-align: center; }
.gray .home h1 {
  font-size: clamp(34px, 5.6vw, 74px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.03em;
  margin: 22px 0 0;
}
.gray .home h1 em { font-style: normal; color: var(--brand); }
.gray .home-desc { max-width: 700px; margin: 22px auto 0; font-size: 20px; font-weight: 400; color: rgba(255, 255, 255, .78); }
.gray .home-btns { display: flex; justify-content: center; gap: 14px; margin-top: clamp(22px, 4vh, 42px); flex-wrap: wrap; }
.gray .home-meta { margin-top: clamp(26px, 6vh, 64px); border-top: 1px solid var(--line); }
.gray .home-meta ul { display: grid; grid-template-columns: repeat(3, 1fr); }
.gray .home-meta li { padding: 20px 10px 0; border-left: 1px solid var(--line); }
.gray .home-meta li:first-child { border-left: 0; }
.gray .home-meta strong { display: block; font-size: clamp(26px, 2.4vw, 34px); font-weight: 900; letter-spacing: -.02em; }
.gray .home-meta strong i { font-style: normal; color: var(--brand); }
.gray .home-meta span { font-size: 16px; letter-spacing: .08em; color: rgba(255, 255, 255, .6); }

/* ===== 服務項目 ===== */
/* 名片風格：10 項服務、圓形黃圈圖示 */
.gray .services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(18px, 3.4vh, 38px) 16px;
}
.gray .service {
  position: relative;
  text-align: center;
  transition: transform .45s var(--ease);
}
.gray .service:hover { transform: translateY(-4px); }
.gray .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(74px, 7.4vw, 96px);
  height: clamp(74px, 7.4vw, 96px);
  margin: 0 auto 14px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  transition: background .45s var(--ease);
}
.gray .service-icon img { width: 52%; height: auto; transition: filter .45s var(--ease); }
.gray .service:hover .service-icon { background: var(--brand); }
/* hover 轉黃底時，把白色圖案壓成黑色才看得見 */
.gray .service:hover .service-icon img { filter: brightness(0); }
.gray .service h3 { font-size: 19px; font-weight: 700; line-height: 1.45; letter-spacing: .01em; }
.gray .service h3 span { display: block; font-size: 17px; font-weight: 500; }

/* ===== 實際案例 ===== */
.gray .cases-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.gray .cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vh, 30px) 26px; }
.gray .case-thumb { position: relative; overflow: hidden; background: #000; }
.gray .case-thumb img {
  width: 100%;
  height: clamp(120px, 20vh, 210px);
  object-fit: cover;
  transition: transform 1s var(--ease), opacity .5s var(--ease);
}
.gray .case-item:hover .case-thumb img { transform: scale(1.06); opacity: .85; }
.gray .case-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--brand);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: 999px;
}
.gray .case-info { padding-top: 14px; margin-top: 14px; border-top: 1px solid var(--line); }
.gray .case-info h3 { font-size: 19px; font-weight: 700; line-height: 1.5; }
.gray .case-info p { font-size: 15px; color: rgba(255, 255, 255, .55); margin-top: 4px; }

/* ===== 聯絡方式 ===== */
.gray .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gray .contact-list { margin-top: clamp(18px, 3vh, 34px); }
.gray .contact-list li { padding: clamp(8px, 1.4vh, 15px) 0; border-bottom: 1px solid var(--line); }
.gray .contact-list span { display: block; font-size: 14px; letter-spacing: .18em; color: rgba(255, 255, 255, .5); }
.gray .contact-list strong { display: block; font-size: 23px; font-weight: 700; margin-top: 6px; letter-spacing: -.01em; }
.gray .contact-list a:hover strong { color: var(--brand); }

/* 名片風格：技術負責人 */
.gray .person { display: flex; align-items: center; gap: 14px; margin-top: clamp(12px, 2vh, 22px); }
.gray .person-name { font-size: 32px; font-weight: 900; line-height: 1.2; letter-spacing: .02em; }
.gray .person-name span { display: block; font-size: 14px; font-weight: 400; letter-spacing: .22em; color: rgba(255, 255, 255, .55); margin-top: 2px; }
.gray .person-tag { padding: 8px 16px; border-radius: 4px; background: var(--brand); color: var(--ink); font-size: 16px; font-weight: 700; letter-spacing: .08em; }

/* 名片風格：黃色勾選特點 */
.gray .checks { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px 18px; margin-top: clamp(10px, 1.8vh, 18px); }
.gray .checks li { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 500; color: rgba(255, 255, 255, .85); }
.gray .checks li::before {
  content: '✓';
  flex: none;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

/* 社群連結（取代名片上的 QR CODE），並排在負責人資訊右側 */
.gray .social { display: flex; gap: 10px; margin-left: auto; }
.gray .social a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: background .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease);
}
.gray .social a svg { width: 24px; height: 24px; fill: currentColor; }
.gray .social a:hover { background: var(--brand); border-color: var(--brand); color: var(--ink); }

/* 聯絡頁行動按鈕（取代原本的表單） */
.gray .contact-cta { display: grid; align-content: center; gap: 16px; }
.gray .btn-lg { width: 100%; height: 72px; font-size: 22px; }
.gray .btn-lg svg { width: 22px; height: 22px; }
.gray .contact-note { font-size: 17px; line-height: 1.9; color: rgba(255, 255, 255, .55); }

/* ===== 手機固定底部操作列（桌機不顯示） ===== */
.gray .m-cta { display: none; }

/* ===== 底部固定資訊列 ===== */
.gray .footbar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 20, 22, 0), rgba(20, 20, 22, .8));
}
.gray .footbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 56px; padding-top: 8px; padding-bottom: 8px; font-size: 15px; color: rgba(255, 255, 255, .55); }
.gray .footbar-info { display: flex; align-items: center; flex-wrap: wrap; }
.gray .footbar-info span:not(:first-child) { margin-left: 16px; padding-left: 16px; border-left: 1px solid var(--line); }
.gray .pager { display: flex; align-items: center; gap: 14px; letter-spacing: .16em; }
.gray .pager b { color: var(--brand); font-weight: 500; }
.gray .pager i { display: block; width: 46px; height: 1px; background: var(--line); font-style: normal; }

/* ===== RWD ===== */
/* 螢幕高度不足時整體收緊，維持一頁滿版不捲動 */
@media (max-height: 820px) {
  .gray .header-inner { height: 76px; }
  .gray .page-inner { padding-top: 92px; padding-bottom: 76px; }
  .gray .sec-head { margin-bottom: 22px; }
  .gray .sec-desc { margin-top: 8px; }
  .gray .service-icon { width: 66px; height: 66px; margin-bottom: 10px; }
  .gray .person-name { font-size: 22px; }
  .gray .social a { width: 40px; height: 40px; }
  .gray .service h3 { font-size: 17px; }
  .gray .service h3 span { font-size: 15px; }
  .gray .case-info { padding-top: 10px; margin-top: 10px; }
  .gray .case-info h3 { font-size: 14px; }
  .gray .contact-grid { gap: 54px; }
  .gray .contact-list strong { font-size: 17px; }
  .gray .footbar-inner { height: 48px; }
}

@media (max-width: 1024px) {
  .gray .nav, .gray .header-cta { display: none; }
  .gray .burger { display: block; }
  .gray .services-grid { grid-template-columns: repeat(4, 1fr); }
  .gray .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .gray .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .gray .page-inner { padding: 104px 32px 84px; }
}

@media (max-width: 720px) {
  .gray .container, .gray .page-inner { padding-left: 22px; padding-right: 22px; }
  .gray .header-inner { height: 72px; }
  .gray .page { align-items: flex-start; }
  .gray .page-inner {
    padding-top: 86px;
    /* 預留固定操作列 + 地址／服務時間細條的高度 */
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
  }
  .gray .page-inner::-webkit-scrollbar { display: none; }
  .gray .home .page-inner { display: flex; flex-direction: column; justify-content: center; }
  /* eyebrow 本身是 inline-flex，在直向 flex 容器中會被拉滿寬，需另外置中內容 */
  .gray .home .eyebrow { justify-content: center; }
  .gray .home-meta li { padding: 16px 6px 0; }
  .gray .home-meta span { font-size: 13px; letter-spacing: .04em; }
  .gray .home-btns .btn { width: 100%; }

  /* 手機空間窄，避免負責人資訊被擠到換行 */
  .gray .person { flex-wrap: wrap; gap: 10px; }
  .gray .person-name { font-size: 26px; white-space: nowrap; }
  .gray .person-tag { font-size: 14px; padding: 6px 12px; white-space: nowrap; }
  .gray .social a { width: 46px; height: 46px; }
  .gray .checks { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 12px; }
  .gray .checks li { font-size: 16px; }
  .gray .person { justify-content: flex-start; }
  .gray .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gray .cases-grid { grid-template-columns: 1fr; }
  .gray .cases-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gray .case-thumb img { height: 190px; }
  /* 手機已有固定操作列，聯絡頁不再重複顯示電話／LINE 按鈕（說明文字保留） */
  .gray .contact-cta .btn-lg { display: none; }

  /* 手機底部只留一排：撥打電話、加 LINE、服務時間 */
  .gray .footbar { display: none; }
  .gray .m-cta {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr .82fr;
    width: 100%;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--ink);
    border-top: 1px solid var(--line);
  }
  .gray .m-cta-hours {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.35;
    border-left: 1px solid var(--line);
  }
  .gray .m-cta-hours b { font-size: 14px; font-weight: 700; color: var(--brand); letter-spacing: .01em; }
  .gray .m-cta-hours span { font-size: 12px; color: rgba(255, 255, 255, .6); }
  .gray .m-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 54px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .04em;
  }
  .gray .m-cta a svg { width: 21px; height: 21px; }
  .gray .m-cta-call { background: var(--brand); color: var(--ink); }
  .gray .m-cta-line { background: #06c755; color: #fff; }
  .gray .m-cta-line svg { fill: currentColor; }
}
