:root {
  --bg: #f4f1eb;
  --ink: #1f211f;
  --muted: #6b6b66;
  --line: rgba(31, 33, 31, 0.14);
  --dark: #333333;
  --dark-soft: #252525;
  --white: #ffffff;
  --accent: #a6855a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.snap-page {
  scroll-snap-type: y mandatory;
}

html.snap-page .page-hero,
html.snap-page .section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

html.no-scroll-page,
html.no-scroll-page body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}

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

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.hero,
.project-card,
.legacy-progress-image {
  user-select: none;
  -webkit-touch-callout: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0));
  transition: transform 0.36s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-130%);
}

.logo,
.site-nav,
.menu-toggle {
  transform: translateY(30px);
}

.logo img {
  width: auto;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.35));
}

.site-nav {
  display: flex;
  gap: 24.96px;
  align-items: center;
}

.site-nav a {
  color: var(--white);
  font-size: 18.72px;
  letter-spacing: 0.1em;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--accent);
}

.nav-group {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  min-width: 150px;
  padding: 12px 0;
  background: rgba(13, 15, 13, 0.94);
  transform: translateX(-50%);
}

.nav-dropdown a {
  display: block;
  padding: 8px 18px;
  white-space: nowrap;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  display: block;
}

.nav-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.nav-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(1.45) contrast(1.35) drop-shadow(0 0 2px rgba(255, 255, 255, 0.45));
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.nav-icon[aria-label="Facebook"] {
  transform: translateY(3px);
}

.nav-icon[href*="FileStation"] img {
  width: 22px;
  height: 22px;
}

.nav-icon:hover img,
.nav-icon:focus-visible img {
  opacity: 0.82;
  filter: brightness(1.9) contrast(1.55) drop-shadow(0 0 4px rgba(255, 255, 255, 0.75));
  transform: translateY(-1px);
}

.nav-icon[aria-label="Facebook"]:hover img,
.nav-icon[href*="FileStation"]:hover img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(54%) sepia(28%) saturate(1348%) hue-rotate(295deg) brightness(88%) contrast(94%) drop-shadow(0 0 3px rgba(196, 73, 125, 0.5));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
}

.hero,
.page-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 6vw 92px;
  color: var(--white);
  background: var(--dark);
}

.page-hero {
  min-height: 100vh;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28));
}

.hero-media,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.eyebrow span {
  display: block;
  color: var(--accent);
}

.eyebrow .eyebrow-en {
  margin-top: 4px;
  font-size: 70%;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: 0.04em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.hero-content p:last-of-type {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 12px 20px;
  border: 1px solid var(--white);
  letter-spacing: 0.08em;
}

.button-primary {
  background: var(--white);
  color: var(--ink);
}

.button-secondary {
  color: var(--white);
}

.section {
  min-height: 100vh;
  display: grid;
  align-content: center;
  padding: 96px 6vw;
}

.snap-section {
  position: relative;
  padding-bottom: 100px;
}

.section-light {
  background: var(--bg);
  color: var(--ink);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 48px;
}

.section-heading p,
.section-light .prose p,
.section-light .text-card p,
.section-light .info-grid p,
.section-light .news-card h3 {
  color: var(--muted);
}

.section-dark .section-heading p,
.section-dark .prose p,
.section-dark .info-grid p,
.section-dark .news-card h3,
.contact-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading .eyebrow,
.section-heading .eyebrow span,
.section-dark .section-heading .eyebrow,
.section-dark .section-heading .eyebrow span {
  color: var(--accent);
}

.page-copy,
.contact-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: start;
  align-content: center;
}

.about-panel {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-content: center;
  padding: 150px 6vw 96px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.about-cover {
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.about-light {
  color: var(--ink);
  background: var(--bg);
}

.about-dark {
  color: var(--white);
  background: var(--dark);
}

.about-copy {
  width: min(760px, 100%);
  transform: translateX(50px);
}

.about-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.about-copy .eyebrow {
  font-size: 21.6px;
}

.about-copy h1,
.about-copy h2,
.about-copy p:not(.eyebrow) {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  margin-left: 96px;
  text-align: justify;
  text-justify: inter-ideograph;
}

.about-copy strong {
  font-weight: 400;
}

.about-light .about-copy h1,
.about-light .about-copy h2,
.about-light .about-copy p:not(.eyebrow) {
  color: var(--ink);
}

.news-panel,
.progress-panel,
.subpage-panel {
  gap: 40px;
  padding-bottom: 112px;
}

.news-panel .media-grid,
.progress-panel .progress-grid,
.subpage-panel .media-grid,
.subpage-panel .project-grid,
.subpage-panel .info-grid,
.pending-note {
  width: min(1080px, calc(100% - 50px));
  transform: translateX(50px);
}

.pending-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  letter-spacing: 0.12em;
}

.project-detail-panel {
  gap: 40px;
  padding-bottom: 112px;
}

.project-detail {
  display: grid;
  width: min(960px, calc(100% - 50px));
  grid-template-columns: minmax(240px, 0.82fr) minmax(260px, 1fr);
  gap: 42px;
  align-items: center;
  transform: translateX(50px);
}

.project-detail img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.92);
}

.project-detail-copy h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.project-detail-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.project-detail-copy .progress-status {
  margin-top: 12px;
  color: #8fcf74;
}

.project-detail-copy .progress-date {
  margin-top: 10px;
  color: var(--accent);
  font-size: 13px;
}

.project-detail-copy .button {
  margin-top: 28px;
}

.legacy-progress-body {
  background: var(--dark);
}

.legacy-progress {
  min-height: calc(100vh - 56px);
  padding: 170px 24px 48px;
  background: var(--dark);
}

.legacy-progress-wrap {
  width: min(1024px, 100%);
  margin: 0 auto;
}

.legacy-progress-table {
  width: 100%;
  border: 0;
  color: #cccccc;
  background: #333333;
  border-collapse: collapse;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

.legacy-progress-card {
  overflow: hidden;
  color: #cccccc;
  background: #333333;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

.legacy-progress-image {
  margin: 0;
  aspect-ratio: 16 / 9;
  background: #333333;
  overflow: hidden;
}

.legacy-progress-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legacy-progress-image-natural {
  aspect-ratio: auto;
}

.legacy-progress-image-natural img {
  height: auto;
  object-fit: contain;
}

.legacy-progress-detail {
  display: grid;
  grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
}

.legacy-info-block,
.legacy-copy-block {
  background: #333333;
}

.legacy-info-block {
  padding: 20px 28px 28px 60px;
  border-right: 1px solid #c0c0c0;
}

.legacy-info-block-offset {
  position: relative;
  border-right: 0;
}

.legacy-info-block-offset::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 28px;
  width: 1px;
  background: #c0c0c0;
}

.legacy-copy-block {
  padding: 20px 50px 28px;
}

.legacy-hero-cell img {
  width: 100%;
  height: auto;
}

.legacy-info-cell,
.legacy-copy-cell {
  vertical-align: top;
  background: #333333;
}

.legacy-info-cell {
  width: 38%;
  padding: 20px 28px 28px 60px;
  border-right: 1px solid #c0c0c0;
}

.legacy-info-cell-offset {
  position: relative;
  border-right: 0;
}

.legacy-info-cell-offset::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 28px;
  width: 1px;
  background: #c0c0c0;
}

.legacy-copy-cell {
  width: 62%;
  padding: 20px 50px 28px;
}

.legacy-info-cell p,
.legacy-copy-cell p,
.legacy-info-block p,
.legacy-copy-block p {
  margin: 10px 0 0;
  color: #cccccc;
  font-size: 16px;
  line-height: 2;
}

.legacy-title {
  color: #ff9900;
  font-size: 18px;
  font-weight: 700;
}

.legacy-title span {
  color: #99cc00;
  font-size: 16px;
  font-weight: 400;
}

.legacy-green {
  color: #99cc00;
}

.legacy-side-image {
  width: 100%;
  height: auto;
}

.legacy-back {
  margin-top: 42px;
}

.legacy-back a {
  color: #99cc00;
}

.prose p {
  margin-bottom: 20px;
  font-size: 17px;
  text-align: justify;
  text-justify: inter-ideograph;
}

.service-grid,
.info-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.text-card,
.info-grid article,
.news-card {
  min-height: 230px;
  padding: 34px;
  background: var(--bg);
}

.section-dark .info-grid,
.section-dark .news-grid {
  background: rgba(255, 255, 255, 0.12);
}

.section-dark .info-grid article,
.section-dark .news-card {
  background: var(--dark);
}

.text-card {
  transition: color 0.2s ease, background 0.2s ease;
}

.text-card:hover {
  color: var(--white);
  background: var(--dark);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  background: transparent;
}

.project-card img,
.news-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.92);
}

.project-card div {
  padding: 14px 0 9px;
}

.project-card span,
.info-grid span,
.news-card time {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.project-card h3 {
  color: var(--white);
  font-size: 16px;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.progress-card {
  min-width: 0;
}

.progress-image {
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.progress-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.35s ease;
}

a.progress-image:hover img {
  transform: scale(1.04);
}

.progress-card div:not(.progress-image) {
  padding: 16px 0 4px;
}

.progress-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

.progress-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.progress-card .progress-status {
  margin-top: 8px;
  color: #8fcf74;
}

.progress-card .progress-date {
  margin-top: 10px;
  color: var(--accent);
  font-size: 13px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.media-card {
  min-width: 0;
  background: transparent;
}

.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.92);
}

.media-card div {
  padding: 16px 0 4px;
}

.media-card time {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.media-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.media-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.media-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
}

.news-card {
  padding: 0;
}

.news-card div {
  padding: 24px;
}

address {
  display: grid;
  gap: 0;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
}

address span,
address a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-page {
  padding-top: 170px;
}

.contact-full {
  position: relative;
  min-height: 100vh;
  padding-bottom: 92px;
}

.contact-heading {
  max-width: 880px;
  margin-bottom: 64px;
}

.contact-heading h1 {
  margin-bottom: 0;
  color: var(--accent);
  font-size: 21.6px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-heading .eyebrow {
  font-size: 21.6px;
}

.contact-panel {
  gap: 36px;
  padding-bottom: 112px;
}

.contact-board {
  display: grid;
  width: min(960px, calc(100% - 50px));
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 42px;
  align-items: stretch;
  transform: translateX(50px);
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 28px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.login-page {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 390px);
  gap: 72px;
  align-items: center;
  align-content: center;
  padding-top: 170px;
  padding-bottom: 120px;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.login-copy {
  max-width: 760px;
}

.login-copy .hero-actions {
  margin-top: 24px;
  margin-left: 96px;
}

.login-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(20, 20, 20, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  align-self: center;
}

.login-panel-head {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.login-panel-head span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.login-panel-head strong {
  color: var(--white);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.login-panel label {
  display: grid;
  gap: 8px;
}

.login-panel label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.login-panel input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  letter-spacing: 0.04em;
}

.login-panel input:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.login-panel input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.login-hint,
.login-message {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.login-message {
  min-height: 22px;
  color: var(--accent);
}

.login-submit {
  width: 100%;
  margin-top: 2px;
  border-color: var(--white);
  cursor: pointer;
}

.map-panel {
  min-height: 520px;
  background: rgba(255, 255, 255, 0.08);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(1) contrast(1.04);
}

.contact-full .contact-heading {
  margin-bottom: 40px;
}

.contact-full .map-panel,
.contact-full .map-panel iframe {
  min-height: clamp(320px, 44vh, 460px);
}

.contact-panel .map-panel,
.contact-panel .map-panel iframe {
  min-height: clamp(300px, 38vh, 420px);
}

.contact-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.snap-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 6vw;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.footer-social a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(1.35) contrast(1.2);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover img,
.footer-social a:focus-visible img {
  opacity: 0.78;
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  html.snap-page {
    scroll-snap-type: none;
  }

  html.snap-page .page-hero,
  html.snap-page .section,
  .about-panel {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .site-header {
    padding: 18px 22px;
  }

  .logo img {
    height: 44px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 22px;
    display: none;
    min-width: 220px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: rgba(13, 15, 13, 0.94);
  }

  .nav-group {
    width: 100%;
  }

  .nav-trigger {
    min-height: auto;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    gap: 8px;
    min-width: 0;
    padding: 8px 0 0 14px;
    background: transparent;
    transform: none;
  }

  .nav-dropdown a {
    padding: 0;
    font-size: 15px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .page-hero,
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-copy,
  .contact-layout,
  .contact-board,
  .login-page,
  .service-grid,
  .info-grid,
  .news-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .progress-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-board {
    width: 100%;
    transform: none;
  }

  .news-panel .media-grid,
  .progress-panel .progress-grid,
  .subpage-panel .media-grid,
  .subpage-panel .project-grid,
  .subpage-panel .info-grid,
  .pending-note,
  .project-detail {
    width: 100%;
    transform: none;
  }

  .legacy-info-cell,
  .legacy-copy-cell {
    display: block;
    width: 100%;
    padding: 24px;
  }

  .legacy-progress-detail {
    grid-template-columns: 1fr;
  }

  .legacy-info-block,
  .legacy-copy-block {
    padding: 24px;
  }

  .legacy-info-block {
    border-right: 0;
    border-bottom: 1px solid #c0c0c0;
  }

  .legacy-info-block-offset::after {
    display: none;
  }

  .legacy-info-cell {
    border-right: 0;
    border-bottom: 1px solid #c0c0c0;
  }

  .legacy-info-cell-offset::after {
    display: none;
  }

  .text-card,
  .info-grid article {
    min-height: auto;
  }

  .site-footer {
    display: block;
  }

  .site-footer span + span {
    display: block;
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 132px;
    padding-bottom: 72px;
  }

  .page-hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .snap-section {
    padding-bottom: 112px;
  }

  .contact-page {
    padding-top: 132px;
  }

  .contact-heading {
    margin-bottom: 42px;
  }

  .contact-full {
    padding-bottom: 112px;
  }

  .login-page {
    gap: 36px;
    align-content: center;
    padding-top: 126px;
    padding-bottom: 112px;
  }

  .login-panel {
    padding: 24px;
  }

  .login-copy .hero-actions {
    margin-left: 0;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 380px;
  }

  .contact-full .map-panel,
  .contact-full .map-panel iframe {
    min-height: 260px;
  }

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

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