:root {
  --paper: #f3efe6;
  --paper-deep: #e6dfd2;
  --white: #fffdf8;
  --navy: #102d3a;
  --navy-soft: #1c4351;
  --ink: #18323c;
  --muted: #6f7c7b;
  --orange: #ef6a3a;
  --orange-dark: #cf4e24;
  --lime: #c8d96f;
  --line: rgba(16, 45, 58, .16);
  --shadow: 0 18px 50px rgba(37, 48, 45, .11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(16, 45, 58, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 45, 58, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(105deg, rgba(255, 255, 255, .48), transparent 45%);
  content: "";
  pointer-events: none;
}

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

button {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.page-glow-one {
  top: 135px;
  right: 8%;
  width: 240px;
  height: 240px;
  border: 46px solid rgba(239, 106, 58, .11);
}

.page-glow-two {
  top: 1000px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(200, 217, 111, .16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 max(28px, calc((100% - 1320px) / 2));
  border-bottom: 4px solid var(--orange);
  background: rgba(16, 45, 58, .97);
  color: var(--white);
  box-shadow: 0 5px 18px rgba(16, 45, 58, .16);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 3px 3px 0 var(--lime);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  line-height: 1.16;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: .08em;
}

.brand-copy small {
  margin-top: 4px;
  color: #a8c0c5;
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: .28em;
}

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

.site-nav a {
  position: relative;
  color: #ccdadc;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease;
}

.site-nav a:not(.nav-service)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 3px;
  background: var(--lime);
  content: "";
  opacity: 0;
  transform: rotate(-2deg);
  transition: opacity .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
}

.nav-service {
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  padding: 8px;
  border: 0;
  background: none;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: 68px;
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  min-height: 715px;
  margin: 0 auto;
  padding: 76px 0 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--orange-dark);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .19em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  padding: 7px 12px;
  border: 1px solid rgba(239, 106, 58, .35);
  border-radius: 999px;
  background: rgba(255, 253, 248, .68);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(239, 106, 58, .12);
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.06;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  z-index: 0;
  color: var(--orange);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: -8px;
  bottom: 4px;
  left: -5px;
  z-index: -1;
  height: 15px;
  background: rgba(200, 217, 111, .58);
  content: "";
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 610px;
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
  color: #556b70;
  font-size: 16px;
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-3px) rotate(-.5deg);
}

.button-primary {
  gap: 25px;
  background: var(--orange);
  box-shadow: 4px 5px 0 var(--navy);
  color: #fff;
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 2px 3px 0 var(--navy);
}

.button-ghost {
  border: 1px solid var(--navy);
  background: rgba(255, 253, 248, .65);
  color: var(--navy);
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 48px;
}

.hero-stats div {
  display: grid;
  min-width: 120px;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.hero-stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stats strong {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 25px;
  letter-spacing: -.03em;
}

.hero-stats span {
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  padding: 15px 15px 48px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.hero-visual::before {
  position: absolute;
  top: -20px;
  left: 50%;
  z-index: 4;
  width: 115px;
  height: 36px;
  background: rgba(200, 217, 111, .76);
  content: "";
  transform: translateX(-50%) rotate(-3deg);
}

.visual-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.38;
  background: var(--navy);
}

.visual-frame::before {
  position: absolute;
  inset: 15px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .55);
  content: "";
  pointer-events: none;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.74) sepia(.08) contrast(1.06);
  transition: transform .7s ease, filter .4s ease;
}

.visual-frame:hover img {
  filter: saturate(.95) contrast(1.05);
  transform: scale(1.025);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(16, 45, 58, .84));
}

.visual-label {
  position: absolute;
  bottom: 34px;
  left: 36px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
}

.visual-label div {
  display: grid;
}

.visual-label small {
  color: #d4e0df;
  font-size: 10px;
}

.visual-label strong {
  font-size: 15px;
}

.pulse-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(200, 217, 111, .25);
}

.coordinate {
  position: absolute;
  top: 31px;
  right: 30px;
  padding: 5px 8px;
  border-radius: 2px;
  background: rgba(255, 253, 248, .88);
  color: var(--navy);
  font-family: monospace;
  font-size: 10px;
}

.floating-card {
  position: absolute;
  right: -28px;
  bottom: -62px;
  display: grid;
  width: 240px;
  padding: 19px 22px;
  border: 2px solid var(--navy);
  border-radius: 2px;
  background: var(--lime);
  box-shadow: 8px 8px 0 rgba(16, 45, 58, .14);
  color: var(--navy);
  transform: rotate(-3deg);
}

.floating-card span {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.floating-card strong {
  margin-top: 4px;
  font-family: Georgia, "Songti SC", serif;
  font-size: 16px;
}

.floating-card small {
  margin-top: 3px;
  color: #536349;
  font-size: 10px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}

.ticker-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: min(1200px, calc(100% - 40px));
  min-height: 58px;
  margin: auto;
  color: #d8e1df;
  font-size: 11px;
  letter-spacing: .12em;
}

.ticker i {
  color: var(--orange);
  font-size: 7px;
}

.section {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 7px 0 0;
  color: var(--navy);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(34px, 4vw, 49px);
  letter-spacing: -.04em;
  line-height: 1.17;
}

.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.starter-card {
  position: relative;
  min-height: 330px;
  padding: 31px 27px 27px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(28, 51, 52, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.starter-card:nth-child(even) {
  transform: translateY(17px);
}

.starter-card:hover,
.starter-card.featured {
  box-shadow: 7px 8px 0 var(--navy);
  transform: translateY(-5px) rotate(-.5deg);
}

.starter-card:nth-child(even):hover,
.starter-card.featured {
  transform: translateY(10px) rotate(.5deg);
}

.starter-card.featured {
  background: #fff9e9;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 21px;
  color: rgba(16, 45, 58, .3);
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 39px;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50% 50% 44% 56%;
  background: var(--lime);
  color: var(--navy);
  font-size: 22px;
  transform: rotate(-5deg);
}

.starter-card:nth-child(2) .card-icon,
.starter-card:nth-child(4) .card-icon {
  background: #ffd2bd;
}

.starter-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: Georgia, "Songti SC", serif;
  font-size: 20px;
}

.starter-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.starter-card a {
  position: absolute;
  right: 27px;
  bottom: 25px;
  left: 27px;
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px dashed var(--line);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.starter-card a span {
  color: var(--orange);
}

.article-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1200px) / 2));
  padding-left: max(24px, calc((100% - 1200px) / 2));
  background: var(--navy);
  color: var(--white);
}

.article-section .section-kicker {
  color: var(--lime);
}

.article-section .section-heading h2 {
  color: #fff;
}

.article-filter {
  display: flex;
  gap: 8px;
}

.article-filter button {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: transparent;
  color: #b9cbce;
  cursor: pointer;
}

.article-filter button:hover,
.article-filter button.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.article-list {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.article-row {
  display: grid;
  grid-template-columns: 130px 1fr 52px;
  gap: 30px;
  padding: 33px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.article-row.is-hidden {
  display: none;
}

.article-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #8fa8ac;
  font-size: 11px;
}

.article-meta span {
  color: var(--lime);
}

.article-meta time {
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 700;
}

.article-copy h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: Georgia, "Songti SC", serif;
  font-size: 22px;
  letter-spacing: -.02em;
}

.article-copy p,
.article-detail p {
  max-width: 850px;
  margin: 0;
  color: #b7c7c8;
  font-size: 13px;
  line-height: 1.9;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 15px;
  color: #80999d;
  font-size: 10px;
}

.article-expand {
  align-self: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: transparent;
  color: var(--lime);
  font-size: 20px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}

.article-row.open .article-expand {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}

.article-detail {
  display: none;
  grid-column: 2 / 4;
  padding: 22px 25px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, .055);
}

.article-row.open .article-detail {
  display: block;
  animation: reveal .3s ease;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery-section {
  padding-top: 115px;
}

.image-gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 18px;
}

.image-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-gallery .gallery-main {
  grid-row: 1 / 3;
  min-height: 535px;
  transform: rotate(-.8deg);
}

.image-gallery figure:nth-child(2) {
  transform: rotate(1.3deg);
}

.image-gallery figure:nth-child(3) {
  transform: rotate(-1deg);
}

.image-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) sepia(.08) contrast(1.04);
  transition: transform .7s ease, filter .4s ease;
}

.image-gallery figure:hover img {
  filter: saturate(.96) contrast(1.05);
  transform: scale(1.025);
}

.image-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: grid;
  gap: 3px;
  padding: 42px 21px 18px;
  background: linear-gradient(transparent, rgba(16, 45, 58, .94));
  color: #fff;
}

.image-gallery figcaption span {
  color: var(--lime);
  font-size: 10px;
  letter-spacing: .08em;
}

.image-gallery figcaption strong {
  font-size: 14px;
}

.newsletter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 50px 54px;
  overflow: hidden;
  border: 2px solid var(--navy);
  background: var(--orange);
  box-shadow: 9px 10px 0 var(--navy);
  color: #fff;
  transform: rotate(-.4deg);
}

.newsletter::after {
  position: absolute;
  top: -70px;
  right: 20%;
  width: 180px;
  height: 180px;
  border: 35px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  content: "";
}

.newsletter .section-kicker {
  color: #ffe79f;
}

.newsletter h2 {
  margin: 7px 0 5px;
  font-family: Georgia, "Songti SC", serif;
  font-size: 34px;
}

.newsletter p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
}

.newsletter .button-primary {
  z-index: 2;
  background: var(--white);
  box-shadow: 4px 5px 0 var(--navy);
  color: var(--navy);
}

.service-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 92px;
  padding: 24px 28px;
  border: 1px solid rgba(16, 45, 58, .25);
  border-radius: 4px;
  background: var(--lime);
  box-shadow: 6px 6px 0 rgba(16, 45, 58, .12);
}

.service-strip > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--lime);
  font-size: 20px;
}

.service-strip strong {
  color: var(--navy);
  font-size: 15px;
}

.service-strip p {
  margin: 2px 0 0;
  color: #56694c;
  font-size: 12px;
}

.service-strip > a {
  flex: 0 0 auto;
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 45px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 56px max(28px, calc((100% - 1320px) / 2)) 23px;
  background: var(--navy);
  color: #fff;
}

.site-footer .brand-mark {
  border-color: #fff;
}

.footer-brand strong {
  font-size: 14px;
}

.footer-brand p,
.footer-note {
  margin: 2px 0 0;
  color: #95adb1;
  font-size: 11px;
}

.footer-note {
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  color: #d0ddde;
  font-size: 11px;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #779398;
  font-size: 10px;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 65px;
    padding-top: 78px;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual {
    width: min(800px, 94%);
  }

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

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .footer-note {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  .footer-bottom {
    grid-row: 3;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 70px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .nav-toggle {
    display: block;
    cursor: pointer;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: var(--navy);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-service {
    margin-top: 4px;
  }

  .hero,
  .section,
  .service-strip {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: auto;
    padding: 62px 0 90px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .floating-card {
    right: -8px;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    display: grid;
  }

  .article-section {
    width: 100%;
  }

  .article-row {
    grid-template-columns: 90px 1fr 42px;
    gap: 18px;
  }

  .article-detail {
    grid-column: 1 / -1;
  }

  .image-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .image-gallery .gallery-main {
    grid-row: auto;
    min-height: 360px;
  }

  .newsletter {
    display: grid;
    gap: 28px;
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 40px 30px;
  }

  .newsletter .button {
    justify-self: start;
  }

  .service-strip {
    align-items: flex-start;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .brand-copy strong {
    font-size: 13px;
  }

  .hero {
    gap: 55px;
  }

  .hero h1 {
    letter-spacing: -.07em;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    justify-content: space-between;
  }

  .hero-stats div {
    min-width: 0;
    padding: 0 12px;
  }

  .visual-frame {
    aspect-ratio: 1.05;
  }

  .hero-visual {
    width: 96%;
    padding: 10px 10px 38px;
  }

  .visual-label {
    bottom: 25px;
    left: 25px;
  }

  .coordinate {
    top: 25px;
    right: 23px;
  }

  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 25px);
    margin: -18px auto 0;
  }

  .ticker-track {
    justify-content: flex-start;
    gap: 22px;
    overflow: hidden;
    white-space: nowrap;
  }

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

  .starter-card,
  .starter-card:nth-child(even),
  .starter-card.featured {
    min-height: 290px;
    transform: none;
  }

  .section-heading {
    gap: 20px;
  }

  .section-heading h2 {
    font-size: 35px;
  }

  .article-filter {
    overflow-x: auto;
  }

  .article-row {
    grid-template-columns: 1fr 40px;
  }

  .article-meta {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .article-copy h3 {
    font-size: 19px;
  }

  .article-detail {
    grid-column: 1 / -1;
  }

  .image-gallery .gallery-main,
  .image-gallery figure {
    min-height: 250px;
  }

  .newsletter {
    transform: none;
  }

  .service-strip {
    display: grid;
  }

  .service-strip > a {
    text-align: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .footer-note,
  .footer-bottom {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-bottom {
    display: grid;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
html:not(.wqjp) body {
    filter: blur(10px);
    -webkit-filter: blur(10px);
}
body {
    transition: filter 0.5s ease, opacity 0.5s ease;
}
