:root {
  --bg: #ffffff;
  --ink: #2a2a2e;
  --ink-soft: #5c5c66;
  --line: rgba(42, 42, 46, 0.08);
  --lavender: #c7b6e8;
  --lavender-deep: #9f88d4;
  --gold: #e8d48a;
  --gold-soft: #f4e9b8;
  --blush: #e8b9c8;
  --mint: #c9e4d8;
  --btn: #b9a06a;
  --btn-hover: #9d8550;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(90, 70, 120, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Noto Sans TC", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 350;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.1rem 4vw;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  backdrop-filter: blur(4px);
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
  transition: opacity 0.25s ease;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 7rem 4vw 6rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 18% 35%, rgba(199, 182, 232, 0.35), transparent 70%),
    radial-gradient(ellipse 45% 45% at 82% 28%, rgba(232, 212, 138, 0.32), transparent 68%),
    radial-gradient(ellipse 40% 40% at 70% 78%, rgba(232, 185, 200, 0.22), transparent 70%),
    linear-gradient(165deg, #fff 0%, #fbf8ff 45%, #fff8ef 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-works {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-shot {
  position: absolute;
  border-radius: 14px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 18px 40px rgba(60, 40, 90, 0.1);
  opacity: 0.55;
  filter: saturate(0.95);
  --rot: 0deg;
  transform: translateY(0) rotate(var(--rot));
  animation: floatShot 14s ease-in-out infinite;
}

.hs1 {
  width: min(29.1vw, 317px);
  aspect-ratio: 4 / 3;
  top: 12%;
  left: 4%;
  --rot: -8deg;
  animation-delay: 0s;
}

.hs2 {
  width: min(26.5vw, 291px);
  aspect-ratio: 4 / 3;
  top: 10%;
  right: 6%;
  --rot: 7deg;
  opacity: 0.37;
  animation-delay: -3s;
}

.hs3 {
  width: min(23.8vw, 265px);
  aspect-ratio: 3 / 4;
  bottom: 16%;
  left: 8%;
  --rot: 5deg;
  opacity: 0.4;
  animation-delay: -6s;
}

.hs4 {
  width: min(31.7vw, 344px);
  aspect-ratio: 4 / 3;
  bottom: 12%;
  right: 5%;
  --rot: -6deg;
  opacity: 0.35;
  animation-delay: -2s;
}

.hs5 {
  width: min(21.2vw, 238px);
  aspect-ratio: 4 / 3;
  top: 42%;
  left: 18%;
  --rot: -3deg;
  opacity: 0.29;
  animation-delay: -8s;
}

.hs6 {
  width: min(22.5vw, 252px);
  aspect-ratio: 4 / 3;
  top: 38%;
  right: 16%;
  --rot: 4deg;
  opacity: 0.32;
  animation-delay: -5s;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 42% 38% at 50% 46%, rgba(255, 255, 255, 0.78), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.28) 55%, rgba(255, 255, 255, 0.55));
  z-index: 1;
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(920px, 94vw);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem 1.5rem;
  align-items: center;
  justify-items: center;
  animation: rise 1s ease both;
}

.hero-copy {
  text-align: center;
  padding-bottom: 0.5rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-select {
  position: relative;
  display: inline-block;
  padding: 1rem 1.35rem 1.1rem;
  border: 1.5px solid rgba(159, 136, 212, 0.7);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 40px rgba(120, 90, 160, 0.08);
}

.handle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border: 1.5px solid var(--lavender-deep);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.handle.tl { top: -5px; left: -5px; }
.handle.tr { top: -5px; right: -5px; }
.handle.bl { bottom: -5px; left: -5px; }
.handle.br { bottom: -5px; right: -5px; }
.handle.tm { top: -5px; left: 50%; transform: translateX(-50%); }
.handle.bm { bottom: -5px; left: 50%; transform: translateX(-50%); }
.handle.ml { top: 50%; left: -5px; transform: translateY(-50%); }
.handle.mr { top: 50%; right: -5px; transform: translateY(-50%); }

.hero-brand {
  margin: 0;
  line-height: 0.95;
  color: #2a2a2e;
}

.hero-serif {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  letter-spacing: 0.02em;
}

.hero-script {
  display: block;
  margin-top: -0.15em;
  font-family: "Great Vibes", "Caveat", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  color: var(--lavender-deep);
  text-shadow: 2px 3px 0 rgba(255, 255, 255, 0.9), 0 10px 24px rgba(159, 136, 212, 0.25);
}

.hero-cursor {
  position: absolute;
  right: -10px;
  bottom: -14px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid #d4a574;
  transform: rotate(-28deg);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.12));
}

.hero-cursor::after {
  content: "";
  position: absolute;
  top: -18px;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4a574;
}

.hero-deco {
  position: absolute;
  color: var(--lavender-deep);
  opacity: 0.75;
  pointer-events: none;
}

.hero-deco.cloud {
  top: -18px;
  right: 18px;
  font-size: 1.2rem;
  color: #b9a06a;
}

.hero-deco.spark {
  bottom: -8px;
  left: -10px;
  font-size: 0.85rem;
  animation: twinkle 3.5s ease-in-out infinite;
}

.hero-meta {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-tools {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.7rem 0.55rem;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(199, 182, 232, 0.55), rgba(232, 212, 138, 0.45));
  box-shadow: var(--shadow);
  align-self: center;
}

.hero-tools span {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--lavender-deep);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  animation: float 12s ease-in-out infinite;
  z-index: 0;
}

.blob-a {
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  background: var(--lavender);
  top: -8%;
  right: -5%;
}

.blob-b {
  width: 36vw;
  height: 36vw;
  max-width: 420px;
  max-height: 420px;
  background: var(--gold-soft);
  bottom: 8%;
  left: -8%;
  animation-delay: -4s;
}

.blob-c {
  width: 22vw;
  height: 22vw;
  max-width: 260px;
  max-height: 260px;
  background: var(--blush);
  top: 42%;
  left: 48%;
  animation-delay: -7s;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.circle-1 {
  width: min(38vw, 340px);
  height: min(38vw, 340px);
  top: 18%;
  left: 50%;
  transform: translateX(-58%);
  animation: pulse 8s ease-in-out infinite;
}

.circle-2 {
  width: min(28vw, 250px);
  height: min(28vw, 250px);
  top: 28%;
  left: 50%;
  transform: translateX(-20%);
  animation: pulse 8s ease-in-out infinite 1s;
}

.sparkle {
  position: absolute;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  animation: twinkle 3.5s ease-in-out infinite;
  z-index: 1;
}

.s1 { top: 62%; left: 58%; }
.s2 { top: 68%; left: 64%; font-size: 0.65rem; animation-delay: 0.8s; }
.s3 { top: 58%; left: 66%; font-size: 0.5rem; animation-delay: 1.4s; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  background: var(--btn);
  color: #fff;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  font-weight: 500;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 24px rgba(185, 160, 106, 0.25);
}

.btn:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border: 1px solid rgba(42, 42, 46, 0.18);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}

.wave svg {
  width: 100%;
  height: 72px;
  display: block;
}

.wave path {
  fill: var(--bg);
}

.wave-bottom {
  bottom: -1px;
}

.wave-top {
  top: -1px;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.35em;
}

.section-sub {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
}

.works {
  padding: 4.5rem 4vw 3rem;
  background: var(--bg);
}

.works-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.filter {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  transition: all 0.2s ease;
}

.filter:hover,
.filter.is-active {
  color: #fff;
  background: linear-gradient(120deg, var(--lavender-deep), #c49a5a);
  border-color: transparent;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.work-card {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f7f4fb;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s ease;
}

.work-card:hover img {
  transform: scale(1.05);
}

.work-card .overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.1rem 1rem 0.95rem;
  background: linear-gradient(to top, rgba(32, 28, 40, 0.72), transparent);
  color: #fff;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.3s ease;
}

.work-card:hover .overlay,
.work-card:focus-visible .overlay {
  opacity: 1;
  transform: translateY(0);
}

.work-card .overlay strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.work-card .overlay span {
  font-size: 0.75rem;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

.work-card.is-hidden {
  display: none;
}

.works-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem;
}

.band {
  position: relative;
  margin-top: 1rem;
}

.band-inner {
  height: clamp(140px, 22vw, 240px);
  background:
    radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.55), transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.35), transparent 40%),
    linear-gradient(105deg, #d7c7f0 0%, #f0d9b0 48%, #e8c4d0 100%);
}

.about {
  padding: 4.5rem 4vw 2rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 3rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto 3.5rem;
}

.about-portrait {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
}

.portrait-ring {
  width: min(260px, 70vw);
  height: min(260px, 70vw);
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(140deg, var(--lavender), var(--gold-soft), var(--blush));
  box-shadow: var(--shadow);
}

.portrait-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #f3eee6;
}

.portrait-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.dot {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.75;
}

.d1 { width: 28px; height: 28px; background: var(--mint); top: 18%; left: 12%; }
.d2 { width: 18px; height: 18px; background: var(--blush); top: 22%; right: 18%; }
.d3 { width: 34px; height: 34px; background: var(--gold-soft); bottom: 20%; left: 18%; }
.d4 { width: 16px; height: 16px; background: var(--lavender); bottom: 28%; right: 14%; }
.d5 { width: 12px; height: 12px; background: #f0c98a; top: 48%; right: 8%; }

.about-name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.about-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.role-tag {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--lavender-deep);
  border: 1px solid rgba(159, 136, 212, 0.35);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.about-copy p {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.about-zh {
  font-size: 0.95rem;
}

.skills {
  display: grid;
  gap: 0.9rem;
  margin: 1.4rem 0 1.8rem;
}

.skill-group h4 {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.skill-chips span {
  min-width: 2.4rem;
  text-align: center;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(42, 42, 46, 0.14);
  border-radius: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.timeline {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.5rem 0 1rem;
}

.timeline-title {
  margin: 0 0 1.4rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 1.35rem;
}

.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid transparent;
  border-image: linear-gradient(to bottom, var(--gold), var(--blush), var(--lavender-deep)) 1;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 0 0 1.4rem 1.3rem;
  position: relative;
}

.timeline-list li::before {
  content: "✦";
  position: absolute;
  left: -0.55rem;
  top: 0.15rem;
  font-size: 0.7rem;
  color: var(--lavender-deep);
  background: #fff;
}

.timeline-list .year {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--btn);
  font-weight: 500;
}

.timeline-list strong {
  display: block;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.timeline-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.contact {
  padding: 3rem 4vw 5rem;
}

.contact-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 20%, rgba(199, 182, 232, 0.35), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(232, 212, 138, 0.35), transparent 42%),
    #fff;
  box-shadow: var(--shadow);
}

.contact-card a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 0.35rem;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--lavender-deep);
}

.contact-card p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.site-footer {
  padding: 1.4rem 4vw 2rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}

.lightbox {
  border: 0;
  padding: 0;
  max-width: min(920px, 94vw);
  width: 100%;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(40, 30, 60, 0.28);
}

.lightbox::backdrop {
  background: rgba(30, 26, 40, 0.55);
  backdrop-filter: blur(4px);
}

.work-card.is-video .play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--lavender-deep);
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(60, 40, 90, 0.18);
  z-index: 1;
}

.lightbox-body {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
}

.lightbox-media {
  background: #1c1822;
  min-height: 240px;
  display: grid;
  place-items: center;
}

.lightbox-media img,
.lightbox-media video,
.lightbox-media iframe {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  min-height: 280px;
  border: 0;
  display: block;
  object-fit: contain;
  background: #f6f3fa;
}

.lightbox-media video,
.lightbox-media iframe {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.lightbox-meta {
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lightbox-cat {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender-deep);
}

.lightbox-meta h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
}

.lightbox-meta p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.lightbox-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  z-index: 2;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes floatShot {
  0%, 100% { transform: translateY(0) rotate(var(--rot)); }
  50% { transform: translateY(-12px) rotate(var(--rot)); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.85; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stage {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-tools {
    flex-direction: row;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lightbox-body {
    grid-template-columns: 1fr;
  }

  .lightbox-media img,
  .lightbox-media video,
  .lightbox-media iframe {
    max-height: 50vh;
    min-height: 200px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.9rem 5vw;
    justify-content: center;
  }

  .nav {
    gap: 0.9rem;
  }

  .nav a {
    font-size: 0.72rem;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .hs5,
  .hs6 {
    display: none;
  }

  .hero-shot {
    opacity: 0.21;
  }

  .hero-tools {
    display: none;
  }

  .timeline-list li {
    grid-template-columns: 3.4rem 1fr;
  }
}
