/* 台灣到府居家按摩 — 淡粉紅：主色玫瑰粉 · 輔色淺粉 · 粉調背景 · Quicksand 標題 */

:root {
  --primary: #c989a3;
  --primary-dark: #9d6b84;
  --secondary: #edc8d6;
  --secondary-soft: #fdf6f9;
  /* 整體背景與卡片：再淺一階粉調 */
  --bg: #fffafc;
  --bg-elevated: #fffcfd;
  --text: #5f5559;
  --text-muted: #92888c;
  /* 主圖上的標題 */
  --hero-title: #fff8fb;
  --hero-subtle: rgba(255, 248, 252, 0.97);
  /* 標題用字：圓潤英文 + 中文回退 */
  --font-display: "Quicksand", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --font-sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Segoe UI", sans-serif;
  --font-en: "Quicksand", "Segoe UI", "Noto Sans", system-ui, sans-serif;
  --accent: var(--primary);
  --accent-hover: var(--primary-dark);
  --accent-soft: var(--secondary);
  --accent-glow: rgba(200, 140, 165, 0.22);
  --border: #efe2e8;
  --shadow: 0 6px 28px rgba(180, 130, 150, 0.07);
  --focus: #9d6b84;
  --hint-bg: #fdf5f8;
  --hint-border: var(--secondary);
  --radius: 14px;
  /* Narrow column: phone + tablet (unchanged up to 1199px) */
  --max: 760px;
  --header-max: 960px;

  /* 頂部品牌字（中文：台灣到府居家按摩 / 英文頁同一個 class）— 改數值即可 */
  --site-logo-size: 1.2rem;
  /* 寬度小於 412px 時另見檔案下方 @media (max-width: 411px) 內的 .site-logo */

  /* Scroll-reveal animation (tune here) */
  --reveal-duration: 3.8s; /* longer = slower fade/slide */
  --reveal-translate: 2rem; /* starting offset downward; 0 = fade only */
  --reveal-easing: cubic-bezier(0.22, 1, 0.36, 1);
  /* optional stagger per block: style="--reveal-delay: 120ms" on a section */

  /* Fixed soft background (does not move when scrolling) */
  --bg-decor-opacity: 0.88; /* lower = 更淡 */
  --bg-decor-wash-1: rgba(240, 200, 215, 0.42); /* 淡粉光暈 */
  --bg-decor-wash-2: rgba(185, 135, 155, 0.2); /* 玫瑰色光暈 */
}

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

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background-color: var(--bg);
}

/* Soft fixed waves + wash (viewport-fixed, not tied to scroll) */
html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--bg-decor-opacity);
  background-color: transparent;
  background-image:
    radial-gradient(ellipse 85% 55% at 92% 4%, var(--bg-decor-wash-1), transparent 52%),
    radial-gradient(ellipse 75% 50% at 6% 98%, var(--bg-decor-wash-2), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 48%, rgba(250, 225, 235, 0.38), transparent 62%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900' preserveAspectRatio='xMidYMid slice'%3E%3Cdefs%3E%3ClinearGradient id='w1' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0%25' stop-color='%23f5dae4' stop-opacity='0.11'/%3E%3Cstop offset='100%25' stop-color='%23f5dae4' stop-opacity='0.03'/%3E%3C/linearGradient%3E%3ClinearGradient id='w2' x1='0' y1='1' x2='0' y2='0'%3E%3Cstop offset='0%25' stop-color='%23c9a8b6' stop-opacity='0.07'/%3E%3Cstop offset='100%25' stop-color='%23c9a8b6' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23w1)' d='M0 195C220 255 380 115 720 175s520 75 720 45V0H0z'/%3E%3Cpath fill='url(%23w2)' d='M0 615C300 535 500 695 860 635s430-55 580-35v300H0z'/%3E%3Cpath fill='%23f5dae4' fill-opacity='0.055' d='M0 365q360-42 720 38t720-48v68q-360 48-720-28T0 435z'/%3E%3Cpath fill='%23c9a8b6' fill-opacity='0.032' d='M0 480q320 28 640-8t800 22v52q-400-36-800 4T0 532z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, 120% 80%, min(1680px, 165vw) auto;
  background-position: top right, bottom left, center center, 50% 42%;
  /* pseudo is position:fixed → pattern stays put without background-attachment */
}

/* Scroll-in: only when JS added html.js-reveal (see inline script in <head>) */
@media (prefers-reduced-motion: no-preference) {
  html.js-reveal .reveal-on-scroll {
    opacity: 0;
    transform: translateY(var(--reveal-translate));
    transition:
      opacity var(--reveal-duration) var(--reveal-easing),
      transform var(--reveal-duration) var(--reveal-easing);
    transition-delay: var(--reveal-delay, 0ms);
  }

  html.js-reveal .reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body {
  margin: 0;
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text);
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
}

body.page-en {
  font-family: var(--font-en);
}

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--primary-dark);
}

a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  left: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 252, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--site-logo-size);
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.site-logo:hover {
  color: var(--primary-dark);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
}

.header-nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.header-nav a:hover {
  color: var(--primary);
  border-bottom-color: var(--secondary);
}

/* 預約 / Book — 方格框 */
.header-nav a.nav-book {
  border: 2px solid var(--primary);
  border-radius: 3px;
  padding: 0.4rem 0.85rem;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.header-nav a.nav-book:hover {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
  background: var(--secondary-soft);
}

/* 語言：小連結（中文頁 en · 英文頁 中） */
.header-nav a.lang-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.35rem 0.2rem;
  margin-left: 0.15rem;
  border-bottom: none;
}

.header-nav a.lang-link:hover {
  color: var(--primary);
  border-bottom: none;
}

.footer-lang {
  margin-bottom: 1rem;
}

.footer-lang .lang-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-lang .lang-link:hover {
  color: var(--primary);
}

/* 窄屏（max-width 411px，即寬度小於 412px）：縮字與邊距，頂部盡量一行 */
@media (max-width: 411px) {
  .header-inner {
    flex-wrap: nowrap;
    gap: 0.35rem 0.45rem;
    padding: 0.45rem 0.55rem;
  }

  .site-logo {
    /* 窄屏品牌字（可單獨調，不跟 --site-logo-size） */
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-nav {
    flex-wrap: nowrap;
    flex-shrink: 0;
    gap: 0.2rem 0.35rem;
  }

  .header-nav a {
    font-size: 0.72rem;
    padding: 0.2rem 0.05rem;
  }

  .header-nav a.nav-book {
    padding: 0.26rem 0.42rem;
    font-size: 0.72rem;
    border-width: 1.5px;
    border-radius: 2px;
  }

  .header-nav a.lang-link {
    font-size: 0.68rem;
    margin-left: 0;
    padding: 0.2rem 0.1rem;
    text-underline-offset: 2px;
  }

  /* 標題易換兩行，列高要留足，否則 align-self:end 會向上溢出被裁切 */
  .hero.hero--overlay {
    grid-template-rows: minmax(300px, min(60vh, 560px));
  }

  /* EN 頁品牌字較長：略縮字級以提高可見字數；仍不足時由 ellipsis 收尾 */
  body.page-en .site-logo {
    font-size: 0.7rem;
    letter-spacing: 0.01em;
  }

  body.page-en .header-nav {
    gap: 0.15rem 0.32rem;
  }
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

/* ----- Image placeholders (replace inner div with <img src="assets/…">) ----- */
.media-slot {
  margin: 0;
  width: 100%;
}

.media-slot-caption {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.media-slot-caption code {
  font-size: 0.78rem;
  color: var(--primary);
  background: var(--secondary-soft);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.img-placeholder {
  width: 100%;
  min-height: 120px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 2px dashed color-mix(in srgb, var(--primary) 38%, var(--border));
  background: linear-gradient(
    145deg,
    var(--secondary-soft) 0%,
    color-mix(in srgb, var(--secondary) 55%, #fff) 50%,
    #fff 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.img-placeholder--wide {
  aspect-ratio: 21 / 9;
  min-height: 140px;
}

.img-placeholder--square {
  aspect-ratio: 1;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  min-height: 0;
}

.img-placeholder--portrait {
  aspect-ratio: 3 / 4;
  min-height: 200px;
}

.media-row {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 560px) {
  .media-row {
    grid-template-columns: 1fr 1fr;
  }
}

.media-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.intro-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 640px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Hero：主圖 + 底部疊加標題與 CTA（文字壓在圖上） */
.hero.hero--overlay {
  display: grid;
  grid-template-columns: 1fr;
  /* 列高不足時，align-self:end 的內容會向上溢出；overflow 只加在圖層上，避免裁切文字 */
  grid-template-rows: minmax(280px, min(58vh, 560px));
  padding: 0;
  margin-bottom: 2.5rem;
  text-align: center;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: visible;
}

.hero.hero--overlay > .hero-media {
  grid-area: 1 / 1;
  margin: 0;
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero.hero--overlay .hero-img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero.hero--overlay .hero-scrim {
  grid-area: 1 / 1;
  z-index: 1;
  align-self: stretch;
  background: linear-gradient(
    to top,
    rgba(52, 38, 48, 0.78) 0%,
    rgba(62, 48, 56, 0.44) 38%,
    rgba(78, 58, 68, 0.18) 62%,
    transparent 100%
  );
  pointer-events: none;
}

.hero.hero--overlay > .hero-inner {
  grid-area: 1 / 1;
  z-index: 2;
  align-self: end;
  justify-self: stretch;
  padding: 1.5rem 1.25rem 1.85rem;
  position: relative;
}

.hero-inner {
  padding: 0 1.5rem 0.25rem;
}

.hero.hero--overlay h1 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 4.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: var(--hero-title);
  text-shadow: 0 2px 18px rgba(70, 45, 58, 0.35);
}

.hero.hero--overlay .tagline {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  color: var(--hero-subtle);
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(65, 42, 55, 0.32);
}

.hero.hero--overlay .regions {
  margin: 0.65rem 0 1.1rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: rgba(255, 245, 250, 0.95);
  font-weight: 600;
  text-shadow: 0 1px 10px rgba(58, 40, 52, 0.3);
}

.hero-cta {
  display: inline-flex;
  margin-top: 0.25rem;
  padding: 0.7rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: background 0.2s ease, transform 0.15s ease;
}

.hero-cta:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.hero-cta:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

/* English: longer copy + narrower column → smaller hero type so blocks stay shorter
   and less likely to overflow the fixed grid row (align-self: end). */
@media (max-width: 560px) {
  body.page-en .hero.hero--overlay h1 {
    font-size: clamp(1.28rem, 3.6vw, 1.82rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-wrap: balance;
  }

  body.page-en .hero.hero--overlay .tagline {
    font-size: 0.93rem;
    line-height: 1.38;
    text-wrap: balance;
  }

  body.page-en .hero.hero--overlay .regions {
    font-size: 0.83rem;
    letter-spacing: 0.05em;
    line-height: 1.42;
    margin: 0.5rem 0 0.95rem;
  }

  body.page-en .hero.hero--overlay > .hero-inner {
    padding: 1.3rem 1rem 1.65rem;
  }

  body.page-en .hero-cta {
    font-size: 0.87rem;
    padding: 0.6rem 1.15rem;
  }
}

@media (max-width: 400px) {
  body.page-en .hero.hero--overlay h1 {
    font-size: clamp(1.12rem, 4.2vw, 1.45rem);
  }

  body.page-en .hero.hero--overlay .tagline {
    font-size: 0.86rem;
  }

  body.page-en .hero.hero--overlay .regions {
    font-size: 0.76rem;
    letter-spacing: 0.03em;
  }

  body.page-en .hero.hero--overlay > .hero-inner {
    padding: 1.15rem 0.8rem 1.45rem;
  }

  body.page-en .hero-cta {
    font-size: 0.8rem;
    padding: 0.52rem 1rem;
  }

  body.page-en .hero.hero--overlay {
    grid-template-rows: minmax(300px, min(64vh, 560px));
  }
}

.intro {
  margin-bottom: 2.75rem;
  padding: 1.5rem 1.5rem 1.6rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro h2 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--primary);
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}

.intro p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

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

.intro .intro-grid p:last-child {
  margin-bottom: 0;
}

section {
  margin-bottom: 2.75rem;
}

section h2 {
  font-family: var(--font-display);
  margin: 0 0 1.1rem;
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--primary);
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}

.list-benefits,
.list-steps {
  margin: 0;
  padding-left: 1.35rem;
}

.list-benefits li,
.list-steps li {
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

.list-benefits li strong,
.list-steps li strong {
  color: var(--text);
}

.list-benefits li::marker {
  color: var(--primary);
}

.list-steps li::marker {
  color: var(--primary-dark);
  font-weight: 700;
}

.card-area {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}

.card-area p {
  margin: 0;
  color: var(--text-muted);
}

.contact-person {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: var(--text);
  text-align: center;
}

.contact-person-note {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-line-link-wrap {
  margin: 0 0 1.25rem;
}

.contact-line-link {
  font-size: 0.95rem;
  word-break: break-all;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 540px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.35rem 1.15rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}

.contact-id {
  margin-bottom: 0.75rem !important;
  font-size: 0.95rem !important;
  color: var(--text) !important;
}

.wechat-qr-slot {
  margin: 0 0 1rem;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.btn-line {
  background: #06c755;
  color: #fff;
}

.btn-line:hover {
  background: #05b04c;
  color: #fff;
}

.btn-wa {
  background: #25d366;
  color: #fff;
}

.btn-wa:hover {
  background: #1ebe5a;
  color: #fff;
}

.btn-wx {
  background: #07c160;
  color: #fff;
}

.btn-wx:hover {
  background: #06a850;
  color: #fff;
}

button.btn {
  font-family: inherit;
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 9999;
  max-width: min(90vw, 20rem);
  padding: 0.65rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: rgba(88, 58, 72, 0.88);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(88, 58, 72, 0.2);
  transform: translateX(-50%) translateY(0.5rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.copy-toast.copy-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.edit-hint {
  margin-top: 1.15rem;
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--hint-bg);
  border: 1px solid var(--hint-border);
  border-radius: var(--radius);
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.site-footer p {
  margin: 0 0 0.75rem;
}


.back-top {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

/* Desktop: wider content + header; tablet/mobile stay at --max 760px */
@media (min-width: 1200px) {
  :root {
    --max: min(1180px, 92vw);
    --header-max: min(1240px, 94vw);
  }

  main {
    padding: 2.25rem 2rem 4.5rem;
  }

  .site-footer {
    padding: 2rem 2rem 3rem;
  }

  .hero.hero--overlay > .hero-inner {
    padding: 2rem 2rem 2.25rem;
  }

  .hero.hero--overlay h1 {
    font-size: clamp(2rem, 2.5vw, 2.75rem);
  }

  .hero.hero--overlay .tagline {
    font-size: 1.12rem;
  }

  .intro-grid {
    grid-template-columns: 1.2fr 0.95fr;
    gap: 2.25rem;
    align-items: center;
  }

  .contact-grid {
    gap: 1.25rem;
  }

  .contact-card {
    padding: 1.5rem 1.25rem;
  }

  section h2,
  .intro h2 {
    font-size: 1.35rem;
  }
}

@media print {
  html::before {
    display: none !important;
  }

  .site-header,
  .footer-lang,
  .header-nav,
  .skip-link,
  .edit-hint,
  .hero-cta,
  .back-top,
  .img-placeholder {
    display: none;
  }

  html.js-reveal .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
