:root {
  --red: #d70d03;
  --deep-red: #b30801;
  --red-text-gradient: linear-gradient(to bottom, #ec0c00 0%, #b30801 100%);
  --gold-text-gradient: linear-gradient(to bottom, #fce9b1 0%, #f5cc81 100%);
  --ink: #490a00;
  --cream: #fffaf0;
  --peach: #fde3be;
  --card: #fff7e7;
  --line: #f5c989;
  --shadow: 0 14px 30px rgba(128, 66, 24, .1);
  --font-family-base: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-family-base);
}

button,
input,
select,
textarea {
  font-family: inherit;
}

body.modal-open {
  overflow: hidden;
}

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

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

.shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

#contacts,
#download {
  /* scroll-margin-top: 24px; */
}

.spinner-container {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .45);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 8px solid rgba(255, 255, 255, .35);
  border-right-color: var(--red);
  border-radius: 50%;
  animation: spinner-rotate .8s linear infinite;
}

@keyframes spinner-rotate {
  to {
    transform: rotate(1turn);
  }
}

.image-button {
  position: relative;
  display: inline-block;
  transition: filter .2s ease, transform .2s ease;
}

.image-button>img {
  pointer-events: none;
}

.image-button:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: 72px;
  background: rgba(255, 250, 240, .68);
  border-bottom: 1px solid rgba(249, 187, 75, .72);
}

.header-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 181px;
  height: 62px;
  object-fit: contain;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #4d2017;
  font: 14px/1 var(--font-family-base);
  transform: translateX(-50%);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: #d42421;
  font-weight: bold;
}

.top-download img {
  width: 164px;
  height: 48px;
}

.image-button__label,
.hero-actions .image-button:last-child::after {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff6d0;
  font-family: var(--font-family-base);
  letter-spacing: .05em;
  white-space: nowrap;
  text-shadow: 0 1px rgba(94, 24, 10, .65);
  transform: translate(-50%, -52%);
}

.top-download .image-button__label {
  font-size: 18px;
}


.hero-actions .image-button:first-child .image-button__label {
  font-size: 18px;
}

.hero-actions .image-button:last-child::after {
  content: "联系我们";
  font-weight: bold;
  color: #a6452b;
  font-size: 18px;
  text-shadow: 0 1px rgba(255, 255, 255, .72);
}

.hero {
  position: relative;
  isolation: isolate;
  height: 692px;
  overflow: hidden;
  background: #f8ddb1;
}

.hero-art {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("assets/hero-scene.png") center top / 1920px 692px no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 239, 202, .03), rgba(255, 239, 202, .11) 49%, transparent 76%);
}

.hero-inner {
  position: relative;
  height: 692px;
  padding-top: 72px;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 500px;
}

.eyebrow {
  height: 24px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff9d7;
  background: linear-gradient(#dc4a23, #ac2114);
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px #eea655, 0 4px 8px rgba(121, 34, 15, .16);
  font: 16px/1 var(--font-family-base);
  white-space: nowrap;
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: 58px;
  font-weight: bold;
  letter-spacing: .025em;
  /* line-height: 1; */
  text-shadow: 0 2px #ffe5b4;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  color: #e10d02;
}

.hero h1 strong {
  margin-top: 16px;
  color: #0e746d;
}

.hero-copy p {
  width: 580px;
  margin: 0 0 18px;
  color: #501108;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-actions img {
  width: auto;
  height: 48px;
}

.hero-copy small {
  display: block;
  margin-top: 14px;
  color: #6e382b;
  font-size: 12px;
  line-height: 1.4;
}

.hero-people {
  position: absolute;
  right: -16px;
  bottom: 0;
  width: 680px;
  aspect-ratio: 1020 / 915;
  max-width: none;
}

.hero-people > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-desktop-qr {
  position: absolute;
  z-index: 1;
  top: 388px;
  left: 256px;
  width: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #4a0b00;
  font-family: "PingFang SC", sans-serif;
  text-align: center;
}

.hero-desktop-qr > img {
  width: 120px;
  height: auto;
  border-radius: 5px;
}

.hero-desktop-qr strong {
  margin-top: 8px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-desktop-qr span {
  margin-top: 2px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: bold;
}

.hero-mobile-people,
.hero-mobile-qr {
  display: none;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.section-kicker {
  width: 212px;
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff9d2;
  background: url("assets/title-tag-blank.png") center / 100% 100% no-repeat;
  font-size: 32px;
  letter-spacing: .16em;
  /* line-height: 1; */
  text-indent: .16em;
  text-shadow: 0 1px rgba(104, 25, 12, .72);
}

.eyebrow__text,
.section-kicker__text,
.image-button__label--gold {
  display: inline-block;
  color: #fce9b1;
  text-shadow: none;
  font-weight: bold;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .eyebrow__text,
  .section-kicker__text,
  .image-button__label--gold {
    color: transparent;
    background: var(--gold-text-gradient) center / 100% 100% no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.section-heading h2 {
  margin: 0;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: .035em;
  line-height: 42px;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active,
.section-heading h2,
.feature-card h3,
.contact-card h3,
.flow-card h3,
.contact-card .frame-button span,
.resource-city,
.stat-card strong,
.download-copy h2,
.footer-inner a:hover,
.download-modal__dialog h2 {
  color: transparent;
  background-image: var(--red-text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero text needs its own treatment: the original light text-shadow makes a
   clipped gradient look blurred, especially on the contact button. */
.hero h1 span,
.hero-actions .image-button:last-child::after {
  color: transparent;
  background: var(--red-text-gradient) center / 100% 100% no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #551b11;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.7;
}

.feature-section,
.stats-section {
  background: var(--peach);
}

.contact-section,
.flow-section,
.download-section {
  background: var(--cream);
}

.css-card {
  background: rgba(255, 247, 231, .94);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 8px 18px rgba(143, 74, 32, .035);
}

.feature-grid,
.contact-grid,
.resource-grid,
.flow-grid,
.stats-grid {
  display: grid;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  height: 220px;
  padding: 28px 24px;
}

.feature-card>img,
.contact-card>img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.feature-card h3,
.contact-card h3,
.flow-card h3 {
  margin: 14px 0 9px;
  color: var(--red);
  font-size: 20px;
  line-height: 1.25;
  font-weight: bold;
}

.feature-card p,
.contact-card p,
.flow-card p {
  margin: 0;
  color: #6a2c20;
  font: 14px/1.75 var(--font-family-base);
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  height: 250px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-width: 2px;
  border-radius: 22px;
}

.frame-button {
  position: relative;
  display: inline-flex;
  width: 162px;
  height: 50px;
  margin-top: auto;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  color: #c93421;
  background: url("assets/lianxishangwu.png") center / 100% 100% no-repeat;
  font: 13px var(--font-family-base);
  font-weight: bold;
  transition: filter .2s ease, transform .2s ease;
}

.frame-button.resource-booking {
  background: url("assets/yuyue.png") center / 100% 100% no-repeat !important;

}

.frame-button span {
  white-space: nowrap;
}

.frame-button:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.resource-section {
  overflow: hidden;
  background: var(--peach);
}

.resource-wash {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 62%;
  opacity: .5;
  background: linear-gradient(0deg, rgba(255, 243, 210, .86), rgba(255, 243, 210, 0)), url("assets/hero-scene.png") center bottom / cover no-repeat;
  filter: saturate(.6);
}

.resource-content {
  position: relative;
}

.resource-grid {
  grid-template-columns: repeat(4, 280px);
  justify-content: space-between;
  gap: 0;
}

.resource-card {
  width: 280px;
  height: 491px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fffdf8;
  border: 1px solid #e8b978;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.resource-photo {
  position: relative;
  height: 290px;
  flex: 0 0 290px;
  overflow: hidden;
  background: #f3dec1;
}

.resource-photo>img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-photo .verify-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 70px;
}

.resource-info {
  min-height: 0;
  flex: 1;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-family-base);
}

.resource-info h3,
.resource-info p {
  margin: 0;
}

.resource-info h3 {
  margin-bottom: 7px;
  color: #5f211b;
  font: 700 20px/1.2 var(--font-family-base);
}

.resource-city,
.resource-meta {
  color: var(--red);
  font-size: 12px;
  line-height: 1.4;
}

.resource-city::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: url("assets/location.png") center / contain no-repeat;
}

.resource-city {
  display: flex;
  align-items: center;
  gap: 4px;
}

.resource-meta {
  margin-top: 7px !important;
  color: #aa4a35;
}

.resource-desc {
  margin-top: 7px !important;
  color: #7b3d31;
  font-size: 11px;
  line-height: 1.55;
}

.resource-booking {
  width: 138px;
  height: 43px;
  margin-top: auto;
  align-self: center;
  font-size: 18px;
  font-weight: bold;
  color: #B86F4F
}

.resource-contact {
  width: 238px;
  height: 62px;
  margin: 32px auto 0;
  display: block;
}

.resource-contact img {
  width: 238px;
  height: 62px;
}

.flow-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.flow-card {
  height: 225px;
  padding: 24px;
}

.flow-card b {
  color: #ffb8ae;
  font: 700 48px/1 var(--font-family-base);
}

.flow-card h3 {
  margin-top: 22px;
  font-weight: bold;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-card strong {
  color: #dc180d;
  font: 700 32px/1 var(--font-family-base);
}

.stat-card span {
  margin-top: 14px;
  color: #682d21;
  font: 14px/1 var(--font-family-base);
}

.download-section {
  padding: 92px 0;
}

.download-card {
  height: 222px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  background: url("assets/footer-download.png") center / 100% 100% no-repeat;
  border: 1px solid var(--line);
  border-radius: 34px;
}

.download-copy h2 {
  margin: 0;
  color: var(--red);
  font-size: 40px;
  line-height: 1.1;
}

.download-copy p {
  margin: 26px 0 0;
  color: #4f170e;
  font-size: 16px;
  font-weight: bold;
}

.download-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.download-actions img {
  width: 190px;
  height: 48px;
}

.site-footer {
  height: 72px;
  color: #6c3a30;
  background: var(--cream);
  border-top: 1px solid rgba(145, 72, 41, .12);
  font: 13px/1.35 var(--font-family-base);
}

.footer-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.footer-inner div {
  display: flex;
  gap: 18px;
}

.footer-inner a:hover {
  color: var(--red);
}

.download-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}

.download-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.download-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 29, 23, .48);
  backdrop-filter: blur(1px);
}

.download-modal__dialog {
  position: relative;
  z-index: 1;
  width: 360px;
  height: 396px;
  padding: 58px 0 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--ink);
  background: url("assets/landing-h5-qr-frame.png") center / 100% 100% no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: 0 18px 46px rgba(28, 13, 5, .25);
  transform: translateY(12px) scale(.96);
  transition: transform .2s ease;
}

.download-modal.is-open .download-modal__dialog {
  transform: translateY(0) scale(1);
}

.download-modal__dialog h2 {
  margin: 0;
  color: var(--red);
  font-size: 20px;
  line-height: 24px;
}

.download-modal__dialog p {
  margin: 18px 0 14px;
  color: #551b11;
  font: 600 14px/21px "PingFang SC", sans-serif;
  white-space: nowrap;
  margin: 8px 0 10px;
  font: 12px/1.5 var(--font-family-base);
}

.download-modal__qr {
  width: 178px;
  height: 182px;
  border-radius: 8px;
}

.download-modal__close {
  position: relative;
  width: 131px;
  height: 33px;
  margin-top: 14px;
  padding: 0;
  color: #fff6d0;
  background: none;
  border: 0;
  cursor: pointer;
  font: 14px/1 "Songti SC", "STSong", serif;
  font: 12px/1 var(--font-family-base);
  text-shadow: 0 1px rgba(94, 24, 10, .65);
}

.download-modal__close img {
  width: 131px;
  height: 33px;
}

.download-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  white-space: nowrap;
  transform: translate(-50%, -53%);
}

.download-modal__close:hover,
.download-modal__close:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.mobile-dock {
  display: none;
}

@media (min-width: 1101px) {

  .feature-section,
  .contact-section,
  .flow-section {
    height: 588px;
  }

  .resource-section {
    height: 946px;
  }

  .stats-section {
    height: 456px;
  }

  .download-section {
    height: 406px;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .brand img {
    width: 146px;
  }

  .desktop-nav {
    gap: 18px;
    font-size: 13px;
  }

  .top-download img {
    width: 140px;
    height: auto;
  }

  .top-download .image-button__label {
    font-size: 14px;
  }

  .hero-copy {
    width: 48%;
  }

  .hero h1 {
    font-size: clamp(40px, 5.2vw, 52px);
  }

  .hero-copy p {
    width: 100%;
    font-size: 16px;
  }

  .hero-people {
    right: -70px;
    width: 61vw;
    height: auto;
  }

  .section {
    height: auto;
    padding: 72px 0;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 280px));
    justify-content: center;
  }

  .contact-grid,
  .flow-grid {
    gap: 18px;
  }

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

  .resource-card {
    width: auto;
  }

  .resource-photo {
    height: auto;
    flex-basis: auto;
    aspect-ratio: 280 / 290;
  }

  .resource-info {
    padding: 14px 12px;
  }

  .resource-info h3 {
    font-size: 17px;
  }

  .download-card {
    padding: 38px;
  }

  .download-copy h2 {
    font-size: 31px;
  }

  .download-actions {
    gap: 8px;
  }

  .download-actions img {
    width: 145px;
    height: auto;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 46px;
  }

  .shell {
    width: min(351px, calc(100% - 24px));
  }

  .site-header {
    height: 46px;
    background: rgba(255, 250, 240, .6);
    border-bottom-color: #f9bb4b;
  }

  .brand img {
    width: 92px;
    height: 32px;
  }

  .desktop-nav {
    display: none;
  }

  .top-download img {
    width: 110px;
    height: 32px;
  }

  .top-download .image-button__label {
    font-size: 13px;
    font-weight: bold;
  }

  .hero {
    height: 906px;
  }

  .hero-art {
    background-image: url("assets/landing-h5-bg.png");
    background-position: center top;
    background-size: 100% 906px;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    width: 100%;
    height: 906px;
    padding: 0;
    display: block;
  }

  .hero-copy {
    position: absolute;
    z-index: 5;
    top: 86px;
    left: 50%;
    width: min(351px, calc(100% - 24px));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    transform: translateX(-50%);
  }

  .eyebrow {
    height: 22px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero h1 {
    margin: 0;
    font-size: 34px;
    letter-spacing: 0;
    line-height: 46px;
  }

  .hero h1 strong {
    margin-top: 0;
  }

  .hero-copy p {
    width: 100%;
    margin: 0;
    font-size: 15px;
    line-height: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions img {
    height: 48px;
  }

  .hero-actions .image-button:first-child .image-button__label {
    font-size: 18px;
  }

  .hero-actions .image-button:last-child::after {
    font-size: 18px;
    font-weight: bold;
  }

  .hero-copy small {
    margin: 0;
    color: #5c281f;
    font-size: 12px;
    line-height: 17px;
  }

  .hero-people {
    display: none;
  }

  .hero-mobile-people {
    position: absolute;
    z-index: 2;
    top: 448px;
    left: 50%;
    width: 399px;
    height: 366px;
    display: block;
    overflow: hidden;
    transform: translateX(-50%);
  }

  .hero-mobile-person {
    position: absolute;
    max-width: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 76%, rgba(0, 0, 0, .82) 86%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 76%, rgba(0, 0, 0, .82) 86%, transparent 100%);
  }

  .hero-mobile-person--right {
    top: 4px;
    right: -8px;
    width: 226px;
  }

  .hero-mobile-person--left {
    top: 0;
    left: -5px;
    width: 226px;
    /* height: 372px; */
  }

  .hero-mobile-qr {
    position: absolute;
    z-index: 4;
    top: 644px;
    left: 50%;
    width: 200px;
    height: 241px;
    display: block;
    transform: translateX(-50%);
  }

  .hero-mobile-qr__frame {
    position: absolute;
    inset: 0;
    width: 200px;
    height: 241px;
  }

  .hero-mobile-qr__content {
    position: absolute;
    z-index: 1;
    top: 47px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4a0b00;
  }

  .hero-mobile-qr__content img {
    width: 120px;
    height: 123px;
    border-radius: 7px;
  }

  .hero-mobile-qr__content strong {
    margin-top: 7px;
    font-size: 20px;
    line-height: 24px;
  }

  .hero-mobile-qr__content span {
    font-size: 16px;
    line-height: 20px;
  }

  .section {
    padding: 64px 0 0;
  }

  .section-heading {
    width: 100%;
    padding: 0 0px;
    margin-bottom: 32px;
  }

  .section-kicker {
    width: 136px;
    height: 36px;
    font-size: 18px;
  }

  .section-heading h2 {
    font-size: 28px;
    line-height: 42px;
  }

  .section-heading p {
    width: 100%;
    font-size: 16px;
    line-height: normal;
  }

  .feature-section {
    height: 668px;
  }

  .feature-section .section-heading,
  .resource-section .section-heading {
    height: 148px;
  }

  .feature-grid {
    height: 360px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 174px);
    gap: 12px;
  }

  .feature-card {
    height: 174px;
    padding: 16px 16px 28px;
    border-radius: 18px;
  }

  .feature-card>img {
    width: 42px;
    height: 42px;
  }

  .feature-card h3,
  .contact-card h3,
  .flow-card h3 {
    margin: 10px 0 7px;
    font-size: 16px;
    font-weight: bold;
  }

  .contact-card {
    .frame-button { 
      background: url("assets/Web-H5.png") center / 100% 100% no-repeat !important;
      width: 203px!important;
    }
  }

  .feature-card p,
  .contact-card p,
  .flow-card p {
    font-size: 12px;
    line-height: 1.55;
  }

  .contact-section {
    height: 1017px;
  }

  .contact-section .section-heading {
    height: 125px;
  }

  .contact-grid {
    height: 732px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 232px);
    gap: 18px;
  }

  .contact-card {
    height: 232px;
    padding: 22px;
    border-width: 1px;
    border-radius: 18px;
  }

  .contact-card>img {
    width: 42px;
    height: 42px;
  }

  .contact-card h3 {
    margin-top: 10px;
    font-size: 20px;
  }

  .contact-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  .contact-card .frame-button {
    width: auto;
    min-width: 162px;
    height: 48px;
    font-size: 18px;
    font-weight: bold;
  }

  .contact-card:nth-child(1) .frame-button {
    min-width: 148px;
  }

  .contact-card:nth-child(2) .frame-button {
    min-width: 200px;
  }

  .contact-card:nth-child(3) .frame-button {
    min-width: 190px;
  }

  .resource-section {
    height: 1134px;
  }

  .resource-grid {
    height: 732px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 360px);
    gap: 12px;
  }

  .resource-card {
    width: auto;
    height: 360px;
    border-radius: 18px;
  }

  .resource-photo {
    height: 170px;
    flex-basis: 170px;
  }

  .resource-photo .verify-badge {
    top: 7px;
    right: 7px;
    width: 58px;
  }

  .resource-info {
    padding: 12px 12px 16px;
  }

  .resource-info h3 {
    margin-bottom: 7px;
    font-size: 16px;
  }

  .resource-city,
  .resource-meta {
    font-size: 11px;
  }

  .resource-meta,
  .resource-desc {
    margin-top: 6px !important;
  }

  .resource-desc {
    font-size: 10px;
    line-height: 1.45;
  }

  .resource-booking {
    width: 118px;
    height: 36px;
    font-size: 14px;
    color: #B86F4F;
    font-weight: bold;
  }

  .resource-contact {
    width: 238px;
    height: 62px;
    margin-top: 32px;
  }

  .flow-section {
    height: 878px;
  }

  .flow-section .section-heading {
    height: 90px;
  }

  /* The stats subtitle wraps on narrow screens; allow its heading to grow so
     the shared title tag retains its intended proportions. */
  .stats-section .section-heading {
    height: auto;
  }

  .flow-grid {
    height: 628px;
    grid-template-columns: 1fr;
    grid-template-rows: 190px 190px 212px;
    gap: 18px;
  }

  .flow-card {
    width: 100%;
    height: auto;
    padding: 24px 24px 32px;
    border-radius: 18px;
  }

  .flow-card b {
    font-size: 38px;
  }

  .flow-card h3 {
    margin-top: 20px;
    font-size: 18px;
  }

  .flow-card p {
    font-size: 16px;
    line-height: 1.55;
  }

  .stats-section {
    min-height: 458px;
    height: auto;
    padding-bottom: 64px;
  }

  .stats-grid {
    height: 208px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 98px);
    gap: 12px;
  }

  .stat-card {
    height: 98px;
    border-radius: 18px;
  }

  .stat-card strong {
    font-size: 28px;
  }

  .stat-card span {
    margin-top: 6px;
    font-size: 12px;
  }

  .download-section {
    height: 476px;
    padding: 64px 0;
  }

  .download-card {
    width: min(351px, calc(100% - 24px));
    height: 348px;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    background: url("assets/download-bg-mobile.png") center / 100% 100% no-repeat;
    border-radius: 18px;
  }

  .download-copy {
    text-align: center;
  }

  .download-copy h2 {
    font-size: 28px;
    line-height: 42px;
  }

  .download-copy p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
  }

  .download-actions {
    flex-direction: column;
    gap: 16px;
  }

  .download-actions img {
    width: 190px;
    height: 48px;
  }

  .site-footer {
    height: 72px;
    font-size: 13px;
  }

  .footer-inner {
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .footer-inner div {
    gap: 12px;
  }

  .download-modal {
    display: none;
  }
}

@media (max-width: 374px) {
  .hero-art {
    background-size: auto 906px;
  }
}
