:root {
  --bg: #f6f7f4;
  --paper: #ffffff;
  --ink: #161819;
  --muted: #666f76;
  --soft: #e6e2d8;
  --line: #d8d5cb;
  --accent: #8b1e2d;
  --accent-2: #1f6f63;
  --gold: #b08a3c;
  --shadow: 0 22px 60px rgba(26, 29, 31, 0.12);
  --max: 1540px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(31, 111, 99, 0.055) 0 1px, transparent 1px 100%) 0 0 / 96px 96px,
    var(--bg);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 247, 244, 0.34) 42%, rgba(246, 247, 244, 0.88));
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 74px;
  padding: 14px max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(22, 24, 25, 0.1);
  background: rgba(246, 247, 244, 0.86);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 15px;
}

.site-header nav {
  gap: 24px;
  color: #3f464a;
  font-size: 14px;
}

.site-header nav a {
  padding: 10px 0;
}

.site-header nav a:hover {
  color: var(--accent);
}

.header-action,
.primary-action,
.secondary-action {
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-action,
.primary-action {
  background: var(--ink);
  color: #fff;
}

.secondary-action {
  border: 1px solid rgba(22, 24, 25, 0.2);
  background: rgba(255, 255, 255, 0.58);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 108px 32px;
  scroll-margin-top: 96px;
}

.divided {
  border-top: 1px solid var(--line);
}

.section-index {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-head {
  max-width: 940px;
  margin-bottom: 42px;
}

.compact-head {
  margin-bottom: 26px;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1fr);
  align-items: end;
  gap: 80px;
  max-width: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 8vw, 142px);
  font-weight: 500;
  line-height: 0.92;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3.4vw, 58px);
  font-weight: 800;
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.hero {
  display: block;
  min-height: 260px;
  padding-top: 26px;
  padding-bottom: 24px;
}

.capability {
  padding-top: 64px;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(360px, 0.48fr) minmax(520px, 1fr);
  align-items: end;
  gap: 58px;
  max-width: 1160px;
}

.hero .section-index {
  margin-bottom: 4px;
}

.hero h1 {
  margin-bottom: 6px;
  font-size: clamp(52px, 5vw, 86px);
}

.hero h2 {
  max-width: 1050px;
  margin-bottom: 8px;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.12;
  white-space: nowrap;
}

.role-line {
  margin-bottom: 10px;
  color: #202426;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-summary {
  max-width: 1160px;
  margin-bottom: 16px;
  color: #3f464a;
  font-size: 17px;
  line-height: 1.62;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #40474b;
  font-size: 14px;
}

.contact-strip span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
}

.hero-media {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 310px 310px;
  gap: 16px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img:first-child {
  grid-row: 1 / 3;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.capability-grid article,
.case-card,
.service-card,
.event-card,
.file-card,
.download-row,
.closing-panel {
  border: 1px solid rgba(22, 24, 25, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(26, 29, 31, 0.06);
}

.capability-grid article {
  padding: 28px;
}

.case-directory-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 34px 0 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(22, 24, 25, 0.12);
}

.case-directory-head.align-left {
  justify-content: flex-start;
  margin-top: 46px;
}

.case-directory-head span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-directory-head h3 {
  margin: 0;
  font-size: 26px;
}

.section-jump {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 0;
}

.section-jump a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 82px;
  padding: 0 20px;
  border: 1px solid rgba(22, 24, 25, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: #252a2d;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(26, 29, 31, 0.06);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.section-jump a:hover {
  border-color: rgba(139, 30, 45, 0.5);
  background: #fff;
  box-shadow: 0 16px 34px rgba(26, 29, 31, 0.1);
  transform: translateY(-1px);
}

.section-jump span {
  color: var(--gold);
  font-family: Georgia, serif;
}

.capability-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 22px;
}

.capability-grid p,
.case-card p,
.service-card p,
.event-card p,
.plan-copy p,
.file-card p,
.download-row p {
  font-size: 15px;
  line-height: 1.7;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.case-card {
  overflow: hidden;
  position: relative;
  border-color: rgba(22, 24, 25, 0.18);
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  z-index: 1;
}

.case-hero {
  position: relative;
  height: 360px;
  border-bottom: 1px solid rgba(22, 24, 25, 0.12);
  background: #dcdad2;
}

.case-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-title {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid rgba(22, 24, 25, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(26, 29, 31, 0.12);
}

.case-title h3 {
  margin: 0 0 6px;
}

.case-body {
  padding: 24px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.proof-tile {
  position: relative;
  height: 150px;
  overflow: hidden;
  border: 1px solid rgba(22, 24, 25, 0.18);
  border-radius: 6px;
  background: #eeeae1;
  cursor: zoom-in;
  box-shadow: 0 8px 18px rgba(26, 29, 31, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.proof-tile:hover,
.mini-gallery button:hover,
.event-card button:hover,
.plan-shot:hover,
.report-shot:hover {
  border-color: rgba(139, 30, 45, 0.42);
  box-shadow: 0 14px 28px rgba(26, 29, 31, 0.12);
  transform: translateY(-1px);
}

.proof-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-tile span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  max-width: calc(100% - 16px);
  padding: 5px 7px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(22, 24, 25, 0.74);
  color: #fff;
  font-size: 12px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.metric {
  padding: 14px;
  border: 1px solid rgba(22, 24, 25, 0.1);
  border-left: 3px solid var(--accent-2);
  background: #f4f6f1;
}

.metric strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.timeline span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: #34383b;
  font-weight: 700;
}

.timeline span:last-child {
  border-right: 0;
}

.project-strip,
.served-brands,
.plan-stat,
.plan-brand-list {
  margin-top: 28px;
}

.project-strip {
  padding: 28px;
  border: 1px solid rgba(22, 24, 25, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.project-strip h3,
.subsection-head h3 {
  margin-bottom: 16px;
}

.project-tags,
.plan-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-tags span,
.plan-brand-list span {
  padding: 10px 12px;
  border: 1px solid rgba(22, 24, 25, 0.13);
  border-radius: 6px;
  background: #fff;
  color: #30363a;
  font-size: 14px;
}

.sop-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.sop-flow article {
  min-height: 188px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
}

.sop-flow strong {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 22px;
}

.sop-flow h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.sop-flow p {
  font-size: 14px;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
}

.service-card .media {
  height: 310px;
  border-bottom: 1px solid rgba(22, 24, 25, 0.12);
  background: #e6e2d8;
}

.service-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.extra-service-wrap {
  margin-top: 16px;
}

.extra-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.extra-service-card {
  position: relative;
  height: 252px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 24, 25, 0.18);
  border-radius: 8px;
  background: #e6e2d8;
  box-shadow: 0 14px 32px rgba(26, 29, 31, 0.07);
  cursor: zoom-in;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.extra-service-card:hover {
  border-color: rgba(139, 30, 45, 0.46);
  box-shadow: 0 18px 38px rgba(26, 29, 31, 0.13);
  transform: translateY(-1px);
}

.extra-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.extra-service-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(22, 24, 25, 0.22);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  color: #171a1c;
  font-size: 15px;
  font-weight: 800;
}

.service-card .content,
.event-card .content {
  padding: 22px;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.mini-gallery button {
  height: 72px;
  padding: 0;
  border: 1px solid rgba(22, 24, 25, 0.16);
  border-radius: 6px;
  overflow: hidden;
  background: #ddd;
  cursor: zoom-in;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mini-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.served-brands {
  padding-top: 54px;
}

.subsection-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.55fr) 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 26px;
}

.subsection-head .section-index {
  grid-column: 1 / -1;
  margin-bottom: -26px;
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-group {
  padding: 26px;
  border-top: 4px solid var(--ink);
  background: rgba(255, 255, 255, 0.74);
}

.brand-group h3 {
  margin-bottom: 18px;
  color: var(--accent);
}

.brand-tags,
.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-tags span,
.brand-logo {
  padding: 8px 10px;
  border: 1px solid rgba(22, 24, 25, 0.14);
  border-radius: 4px;
  background: #fff;
  color: #2f3437;
  font-size: 13px;
  line-height: 1.15;
}

.brand-logo {
  display: grid;
  grid-template-columns: 34px minmax(80px, 1fr);
  align-items: center;
  gap: 9px;
  min-width: 142px;
  min-height: 54px;
}

.brand-logo i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(22, 24, 25, 0.18);
  border-radius: 50%;
  color: var(--accent);
  font-style: normal;
  font-family: Georgia, serif;
  font-size: 13px;
}

.brand-logo b {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.22;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.event-card {
  overflow: hidden;
}

.event-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.event-compare button {
  border: 1px solid rgba(22, 24, 25, 0.16);
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.event-card button,
.plan-shot button,
.report-shot button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.event-card .event-compare button {
  border: 1px solid rgba(22, 24, 25, 0.16);
}

.event-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid rgba(22, 24, 25, 0.14);
}

.plan-list {
  display: grid;
  gap: 22px;
}

.plan-stat {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.4fr;
  gap: 1px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.plan-stat strong,
.plan-stat span {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.plan-stat strong {
  color: var(--accent);
  font-size: 18px;
}

.plan-brand-list {
  margin-bottom: 28px;
}

.plan-item {
  display: grid;
  grid-template-columns: minmax(460px, 0.8fr) minmax(600px, 1.2fr);
  gap: 26px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(22, 24, 25, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.plan-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-copy .label {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 18px;
}

.plan-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.plan-shot {
  border: 1px solid rgba(22, 24, 25, 0.16);
  border-radius: 6px;
  overflow: hidden;
  background: #e4e0d7;
  cursor: zoom-in;
  box-shadow: 0 8px 18px rgba(26, 29, 31, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.plan-shot img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.file-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.report-grid {
  display: grid;
  gap: 22px;
}

.report-card {
  display: grid;
  grid-template-columns: 0.46fr 1fr;
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(22, 24, 25, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.report-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
}

.report-shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.report-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22, 24, 25, 0.16);
  border-radius: 6px;
  background: #e5e2da;
  cursor: zoom-in;
  box-shadow: 0 8px 18px rgba(26, 29, 31, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.report-shot img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: top;
}

.report-shot span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  max-width: calc(100% - 16px);
  padding: 5px 7px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(22, 24, 25, 0.74);
  color: #fff;
  font-size: 12px;
}

.file-card {
  overflow: hidden;
}

.file-card a {
  display: block;
}

.file-card.is-disabled,
.download-row.is-disabled {
  opacity: 0.66;
}

.file-thumb {
  height: 250px;
  border-bottom: 1px solid rgba(22, 24, 25, 0.12);
  background: #dedbd2;
  overflow: hidden;
}

.file-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.file-card .content {
  padding: 16px;
}

.file-type {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 4px;
  background: #eff2ed;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
}

.download-list {
  display: grid;
  gap: 10px;
}

.download-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
}

.download-row strong {
  font-size: 18px;
}

.download-row p {
  margin: 4px 0 0;
}

.download-row .open {
  color: var(--accent);
  font-weight: 800;
}

.is-disabled .open {
  color: var(--muted);
}

.closing {
  padding-bottom: 120px;
}

.closing-panel {
  max-width: 980px;
  padding: 54px;
  background:
    linear-gradient(135deg, rgba(139, 30, 45, 0.08), transparent 42%),
    #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 48px;
  background: rgba(12, 14, 15, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(92vw, 1500px);
  max-height: 82vh;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.lightbox p {
  margin: 14px 0 0;
  color: #fff;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 28px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .site-header nav {
    display: none;
  }

  .hero,
  .hero-copy,
  .section-head.split,
  .plan-item,
  .subsection-head,
  .report-card {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-template-rows: 260px 260px;
  }

  .capability-grid,
  .brand-wall,
  .extra-service-grid,
  .sop-flow,
  .section-jump {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-grid,
  .service-grid,
  .event-grid,
  .file-grid,
  .report-shots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section {
    padding: 72px 18px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-media {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 210px);
  }

  .hero-media img:first-child {
    grid-row: auto;
  }

  .capability-grid,
  .case-grid,
  .service-grid,
  .extra-service-grid,
  .brand-wall,
  .event-grid,
  .file-grid,
  .sop-flow,
  .plan-stat,
  .report-shots,
  .section-jump {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline span:last-child {
    border-bottom: 0;
  }

  .plan-shots,
  .proof-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .download-row {
    grid-template-columns: 1fr;
  }
}
