:root {
  --cream: #f6f2e8;
  --paper: #fffdf7;
  --forest: #20382e;
  --forest-deep: #172a23;
  --ink: #21332c;
  --muted: #6f786f;
  --orange: #f56d3b;
  --orange-light: #f6aa86;
  --blue: #cbdcf5;
  --yellow: #f5d166;
  --line: rgba(32, 56, 46, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family:
    "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  background: var(--orange);
  color: white;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
}

.header-inner {
  width: min(1240px, calc(100% - 48px));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 14px 14px 18px 18px;
  background: var(--forest);
  transform: rotate(-4deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i,
.brand-mark b {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--cream);
}

.brand-mark::before {
  width: 7px;
  height: 8px;
  left: 8px;
  top: 8px;
}

.brand-mark::after {
  width: 7px;
  height: 8px;
  right: 8px;
  top: 8px;
}

.brand-mark i {
  width: 7px;
  height: 8px;
  left: 17px;
  top: 5px;
}

.brand-mark b {
  width: 19px;
  height: 16px;
  left: 10px;
  top: 19px;
  border-radius: 48% 48% 44% 44%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0.1em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding: 34px 0 30px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 25px;
  height: 2px;
  background: var(--orange);
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.header-action {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.header-action:hover,
.header-action:focus-visible {
  background: var(--forest);
  color: white;
}

.menu-button {
  display: none;
}

.hero {
  min-height: 790px;
}

.hero-inner {
  width: min(1240px, calc(100% - 48px));
  min-height: 790px;
  margin: 0 auto;
  padding: 150px 0 85px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 1.14;
  letter-spacing: -0.055em;
}

.hero h1 em {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  color: var(--forest);
  font-family: "STKaiti", "KaiTi", serif;
  font-style: normal;
  letter-spacing: -0.08em;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 3%;
  right: -5%;
  bottom: 3px;
  height: 18px;
  border-radius: 60% 36% 58% 40%;
  background: var(--yellow);
  opacity: 0.78;
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 530px;
  margin: 30px 0 0;
  color: #53645b;
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.primary-button {
  min-height: 56px;
  padding: 0 20px 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  border-radius: 999px;
  background: var(--forest);
  box-shadow: 0 12px 30px rgba(32, 56, 46, 0.15);
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.primary-button span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(32, 56, 46, 0.23);
}

.underlined-link {
  padding-bottom: 4px;
  border-bottom: 1px solid;
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -3;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: #e6e0d2;
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(32, 56, 46, 0.12);
  border-radius: 50%;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px dashed rgba(32, 56, 46, 0.28);
  border-radius: 50%;
}

.orbit-a {
  width: 520px;
  height: 280px;
  transform: rotate(34deg);
}

.orbit-b {
  width: 500px;
  height: 250px;
  transform: rotate(-27deg);
}

.sun {
  position: absolute;
  z-index: -1;
  top: 24px;
  right: 58px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 12px rgba(245, 209, 102, 0.16);
}

.travel-card {
  position: relative;
  width: min(390px, 72vw);
  height: 460px;
  padding: 18px;
  overflow: hidden;
  border: 2px solid var(--forest);
  border-radius: 38px;
  background-color: var(--orange);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 24px 24px;
  box-shadow: 17px 19px 0 var(--forest);
  transform: rotate(2.5deg);
}

.card-meta,
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--forest-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.card-scene {
  position: relative;
  height: 346px;
  margin: 13px 0;
  overflow: hidden;
  border-radius: 23px;
  background: #f9e9c2;
}

.mountain {
  position: absolute;
  border-radius: 50% 50% 0 0;
}

.mountain-back {
  left: -25%;
  right: 8%;
  bottom: 64px;
  height: 150px;
  background: var(--blue);
  transform: rotate(8deg);
}

.mountain-front {
  left: 22%;
  right: -35%;
  bottom: 0;
  height: 185px;
  background: #6d9275;
  transform: rotate(-8deg);
}

.road {
  position: absolute;
  left: 45%;
  bottom: -40px;
  width: 85px;
  height: 245px;
  border-radius: 50% 50% 0 0;
  background: #f8c25a;
  transform: rotate(-12deg);
}

.road::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  width: 2px;
  height: 150px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(32, 56, 46, 0.6) 0 10px,
    transparent 10px 20px
  );
}

.pet {
  position: absolute;
  bottom: 72px;
  width: 90px;
  height: 105px;
  border: 3px solid var(--forest);
  border-radius: 48% 48% 42% 42%;
  background: var(--paper);
}

.dog {
  left: 57px;
  transform: rotate(-5deg);
}

.cat {
  right: 54px;
  bottom: 53px;
  width: 78px;
  height: 92px;
  background: var(--yellow);
  transform: rotate(6deg);
}

.ear {
  position: absolute;
  z-index: -1;
  top: -23px;
  width: 34px;
  height: 45px;
  border: 3px solid var(--forest);
  background: inherit;
}

.ear-left {
  left: 5px;
  border-radius: 80% 15% 40% 35%;
  transform: rotate(-25deg);
}

.ear-right {
  right: 5px;
  border-radius: 15% 80% 35% 40%;
  transform: rotate(25deg);
}

.eyes::before,
.eyes::after {
  content: "";
  position: absolute;
  top: 38px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
}

.eyes::before {
  left: 24px;
}

.eyes::after {
  right: 24px;
}

.nose {
  position: absolute;
  top: 53px;
  left: 50%;
  width: 9px;
  height: 7px;
  border-radius: 50% 50% 65% 65%;
  background: var(--forest);
  transform: translateX(-50%);
}

.card-bottom b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--forest);
  border-radius: 50%;
}

.floating-tag {
  position: absolute;
  z-index: 4;
  min-height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--forest);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 6px 7px 0 var(--forest);
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.tag-one {
  top: 80px;
  left: 0;
  transform: rotate(-5deg);
}

.tag-one span {
  color: var(--orange);
}

.tag-two {
  right: -5px;
  bottom: 70px;
  transform: rotate(4deg);
}

.tag-two b {
  color: var(--orange);
  font-size: 23px;
}

.promise-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--forest);
  color: white;
}

.promise-bar > div {
  min-height: 112px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.promise-bar > div:last-child {
  border-right: 0;
}

.promise-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 19px;
}

.promise-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.promise-bar b {
  display: block;
  margin-bottom: 5px;
  color: white;
  font-size: 18px;
}

.section {
  padding: 125px 0;
}

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

.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-tag span {
  width: 34px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  letter-spacing: 0;
}

.section-tag.light {
  color: rgba(255, 255, 255, 0.48);
}

.section-tag.light span {
  background: var(--yellow);
  color: var(--forest);
}

.section-kicker {
  margin: 0 0 17px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

h2 {
  margin: 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 100px;
}

.about-copy {
  padding-top: 8px;
}

.about-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.about-copy .about-lead {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: "STSong", "Songti SC", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.65;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.facts div {
  padding: 0 20px;
  border-right: 1px solid var(--line);
}

.facts div:first-child {
  padding-left: 0;
}

.facts div:last-child {
  border-right: 0;
}

.facts b,
.facts span {
  display: block;
}

.facts b {
  margin-bottom: 7px;
  font-size: 18px;
}

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

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

.business-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
}

.business-intro {
  max-width: 320px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

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

.service-card {
  min-height: 440px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--forest);
  border-radius: 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 10px 0 var(--forest);
}

.service-card.orange {
  background: var(--orange-light);
}

.service-card.blue {
  background: var(--blue);
}

.service-card.yellow {
  background: var(--yellow);
}

.service-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.service-number b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid;
  border-radius: 50%;
}

.service-icon {
  width: 112px;
  height: 112px;
  margin: 62px auto 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--forest);
  border-radius: 48% 52% 42% 58%;
  background: rgba(255, 255, 255, 0.32);
  color: white;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 32px;
  transform: rotate(-5deg);
}

.service-icon::before {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  z-index: -1;
  border-radius: 50%;
  background: var(--forest);
}

.service-card h3 {
  margin: auto 0 13px;
  font-size: 22px;
}

.service-card > p {
  margin: 0;
  color: rgba(32, 56, 46, 0.73);
  font-size: 13px;
  line-height: 1.8;
}

.belief {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  color: white;
}

.belief::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -100px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.02);
}

.belief-inner {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 120px;
}

.belief-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
}

.belief-heading h2 {
  color: #f9f4e7;
}

.belief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.54fr;
  gap: 1px;
  margin-top: 82px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.13);
}

.belief-grid article,
.belief-seal {
  min-height: 280px;
  padding: 36px;
  background: var(--forest-deep);
}

.belief-grid article > span {
  display: block;
  margin-bottom: 72px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.belief-grid h3 {
  margin: 0 0 15px;
  font-family: "STSong", "Songti SC", serif;
  font-size: 25px;
}

.belief-grid article > p {
  max-width: 370px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
  line-height: 1.9;
}

.belief-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.belief-seal b {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 50px;
  transform: rotate(-8deg);
}

.belief-seal small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.company-card {
  padding: 68px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 100px;
  overflow: hidden;
  border: 1px solid var(--forest);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 13px 15px 0 #d9d5c9;
}

.company-card h2 {
  font-size: clamp(34px, 3.2vw, 48px);
}

.company-card dl {
  margin: 16px 0 0;
}

.company-card dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 25px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.company-card dl > div:last-child {
  border-bottom: 0;
}

.company-card dt {
  color: var(--muted);
  font-size: 12px;
}

.company-card dd {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
}

.site-footer {
  padding: 0 max(24px, calc((100% - 1160px) / 2));
  background: #e9e4d8;
}

.footer-main {
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.footer-main > p {
  margin: 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 20px;
  font-weight: 700;
}

.back-top {
  justify-self: end;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--forest);
  border-radius: 50%;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.back-top:hover,
.back-top:focus-visible {
  background: var(--forest);
  color: white;
}

.footer-bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 11px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--forest);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 18px;
    height: 1px;
    background: var(--forest);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    padding: 130px 28px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-family: "STSong", "Songti SC", serif;
    font-size: 28px;
  }

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

  .header-action {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 145px;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .tag-one {
    left: 8%;
  }

  .tag-two {
    right: 8%;
  }

  .about-grid,
  .company-card {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .service-card:last-child {
    grid-column: span 2;
  }

  .belief-heading {
    grid-template-columns: 1fr;
  }

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

  .belief-seal {
    grid-column: span 2;
    min-height: 210px;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .hero-inner,
  .section-inner {
    width: calc(100% - 36px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .hero-inner {
    padding-top: 126px;
    gap: 42px;
  }

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

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-visual::before {
    width: 330px;
    height: 330px;
  }

  .hero-visual::after {
    width: 290px;
    height: 290px;
  }

  .orbit {
    display: none;
  }

  .sun {
    top: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .travel-card {
    width: 280px;
    height: 352px;
    padding: 13px;
    border-radius: 28px;
    box-shadow: 11px 12px 0 var(--forest);
  }

  .card-scene {
    height: 260px;
    margin: 9px 0;
  }

  .pet {
    left: 35px;
    bottom: 48px;
    width: 67px;
    height: 80px;
  }

  .cat {
    left: auto;
    right: 34px;
    bottom: 34px;
    width: 60px;
    height: 72px;
  }

  .eyes::before,
  .eyes::after {
    top: 29px;
  }

  .eyes::before {
    left: 17px;
  }

  .eyes::after {
    right: 17px;
  }

  .nose {
    top: 42px;
  }

  .card-meta,
  .card-bottom {
    font-size: 8px;
  }

  .tag-one {
    top: 70px;
    left: -4px;
  }

  .tag-two {
    right: 0;
    bottom: 38px;
  }

  .promise-bar {
    grid-template-columns: 1fr;
  }

  .promise-bar > div {
    min-height: 92px;
    justify-content: flex-start;
    padding-left: 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section {
    padding: 92px 0;
  }

  .section-tag {
    margin-bottom: 34px;
  }

  h2 {
    font-size: 36px;
  }

  .about-grid {
    gap: 44px;
  }

  .about-copy .about-lead {
    font-size: 21px;
  }

  .facts {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .facts div,
  .facts div:first-child {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .facts div:last-child {
    border-bottom: 0;
  }

  .business-heading {
    display: block;
  }

  .business-intro {
    margin-top: 24px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .service-card,
  .service-card:last-child {
    min-height: 390px;
    grid-column: auto;
  }

  .belief-inner {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .belief-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .belief-seal {
    grid-column: auto;
  }

  .company-card {
    padding: 34px 26px 50px;
    gap: 35px;
  }

  .company-card dl > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-main {
    min-height: 220px;
    padding: 42px 0;
    grid-template-columns: 1fr auto;
    gap: 30px;
  }

  .footer-main > p {
    grid-column: span 2;
    grid-row: 2;
  }

  .footer-bottom {
    min-height: 105px;
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
