﻿/* HPT front brand tokens — steady steel blue
   Brand / CTA   #1B4F72
   Ink           #1A2332
   Soft Tint     #E7F0F6
   Footer        #15202B
*/
:root {
  --brand: #1b4f72;
  --brand-dark: #143d5c;
  --brand-soft: #e7f0f6;
  --brand-rgb: 27, 79, 114;
  --cta: #1b4f72;
  --cta-dark: #143d5c;
  --cta-ink: #ffffff;
  --price: #c0392b;
  --trust: #1a2332;
  --trust-soft: #1b4f72;
  --ink: #1a2332;
  --ink-soft: #5a6a7a;
  --line: #e3e8ee;
  --bg: #f4f7fa;
  --bg-warm: #eaf1f6;
  --white: #ffffff;
  --accent: #1b4f72;
  --footer-bg: #15202b;
  --footer-ink: #9aa8b5;
  --radius: 12px;
  --shadow: 0 10px 28px rgba(26, 35, 50, 0.08);
  --container: 1180px;
  --header-h: 86px;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.lazy-img {
  opacity: 0;
  transition: opacity 0.4s ease;
  background: #f3f3f0;
}

.lazy-img.is-loaded,
.lazy-img.is-error {
  opacity: 1;
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .lazy-img {
    opacity: 1;
    transition: none;
  }
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

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

/* Header
   backdrop-filter is on ::before so it does not clip the mobile dropdown
   (filter/backdrop-filter forces overflow clipping on the element itself). */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  overflow: visible;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: height 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: background 0.28s ease, box-shadow 0.28s ease;
  pointer-events: none;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(26, 26, 26, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.site-header.is-scrolled::before {
  background: rgba(255, 255, 255, 0.98);
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: height 0.28s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}

.brand img {
  height: 48px;
  width: auto;
  transition: height 0.28s ease;
}

.site-header.is-scrolled .brand img {
  height: 42px;
}

.brand__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.brand__name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.brand__tag {
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  border-radius: 8px;
  transition: color 0.22s ease, background 0.22s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 1.2em;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav__link:hover {
  color: var(--ink);
  background: rgba(var(--brand-rgb), 0.08);
}

.site-nav__link.is-active {
  font-weight: 800;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  line-height: 1.15;
  white-space: nowrap;
}

.site-nav__phone-label {
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.site-nav__phone-num {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.site-nav__phone:hover .site-nav__phone-num {
  color: var(--brand);
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  border: none;
  background: var(--cta);
  color: var(--cta-ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(var(--brand-rgb), 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.site-nav__cta:hover,
.site-nav__cta.is-active {
  background: var(--cta-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(var(--brand-rgb), 0.34);
}

.site-nav__cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header__inner,
  .brand img,
  .site-nav__link,
  .site-nav__link::after,
  .site-nav__cta,
  .nav-toggle span {
    transition: none;
  }

  .site-nav__cta:hover,
  .site-nav__cta.is-active,
  .site-nav__cta:active {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .brand__tag {
    display: none;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav__link {
    padding: 0 12px;
  }

  .site-nav__phone-label {
    display: none;
  }
}

/* Hero carousel */
.hero {
  position: relative;
  min-height: min(68vh, 560px);
  display: block;
  color: #fff;
  background: #15202b;
  overflow: hidden;
}

.hero__slides {
  position: relative;
  min-height: min(68vh, 560px);
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s ease;
  z-index: 0;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: brightness(1.08) saturate(1.08) contrast(1.02);
  transition: transform 6.5s ease-out;
}

.hero__slide.is-active .hero__media {
  transform: scale(1);
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(21, 32, 43, 0.62) 0%,
      rgba(21, 32, 43, 0.28) 42%,
      rgba(27, 79, 114, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(21, 32, 43, 0.18) 0%,
      transparent 40%,
      rgba(21, 32, 43, 0.45) 100%
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 72px 0;
  max-width: 620px;
  color: #fff;
}

.hero__slide.is-active .hero__content {
  animation: fadeUp 0.75s ease both;
}

.hero__brand {
  margin: 0 0 14px;
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.25),
    0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero__title {
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.98);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.28),
    0 4px 16px rgba(0, 0, 0, 0.22);
}

.hero__lead {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
  max-width: 28em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .btn-primary {
  min-width: 148px;
}

.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.hero .btn-ghost:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--cta-ink);
}

.hero__dot.is-active {
  width: 22px;
  background: var(--brand);
}

.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hero__nav:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  transform: translateY(-50%) scale(1.04);
}

.hero__nav--prev {
  left: 20px;
}

.hero__nav--next {
  right: 20px;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}

.hero__dot.is-active {
  width: 22px;
  background: var(--brand);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cta);
  color: var(--cta-ink);
  box-shadow: 0 8px 20px rgba(var(--brand-rgb), 0.28);
}

.btn-primary:hover {
  background: var(--cta-dark);
  color: var(--cta-ink);
}

.btn-ghost {
  background: rgba(var(--brand-rgb), 0.08);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--cta-ink);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-accent {
  background: var(--cta);
  color: var(--cta-ink);
}

/* Sections */
.section {
  padding: 52px 0;
}

.hero + .section {
  padding-top: 40px;
}

.section--tight {
  padding: 40px 0;
}

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

.section--warm {
  background:
    radial-gradient(ellipse at 12% 20%, rgba(var(--brand-rgb), 0.12), transparent 42%),
    radial-gradient(ellipse at 88% 80%, rgba(var(--brand-rgb), 0.08), transparent 46%),
    linear-gradient(180deg, #f7fafc 0%, #eaf1f6 100%);
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink);
}

/* City bar */
.city-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.city-bar__item {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.city-bar__item:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--cta-ink);
  transform: translateY(-1px);
}

.city-bar__item--more {
  background: var(--brand-soft);
  border-color: transparent;
  color: var(--ink);
}

/* Spotlight cases under hero */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.spotlight {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--trust);
}

.spotlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30, 30, 30, 0.85) 100%);
}

.spotlight__caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spotlight:hover img {
  transform: scale(1.06);
}

/* Value strip */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-item {
  padding: 28px 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.value-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.45rem;
  color: var(--ink);
}

.value-item span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.reveal--left {
  transform: translateX(-28px);
}

.reveal--left.is-in {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(28px);
}

.reveal--right.is-in {
  transform: translateX(0);
}

.reveal--zoom {
  transform: translateY(16px) scale(0.97);
}

.reveal--zoom.is-in {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--zoom {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Mobile: keep content visible — avoid opacity:0 stuck if IO misses */
@media (max-width: 768px) {
  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--zoom {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.section-head__more {
  flex-shrink: 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.section-head__more:hover {
  color: var(--ink);
}

/* City / filter chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.chips a {
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.chips a:hover {
  color: var(--ink);
  border-color: rgba(230, 217, 0, 0.55);
  background: var(--brand-soft);
}

.chips a.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--cta-ink);
  font-weight: 600;
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  position: relative;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(26, 35, 50, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-rgb), 0.35);
  box-shadow: 0 12px 28px rgba(26, 35, 50, 0.12);
}

.card__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dce5ee;
  flex-shrink: 0;
}

.card__cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(21, 32, 43, 0.28));
  pointer-events: none;
  z-index: 1;
}

.card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.card:hover .card__cover img {
  transform: scale(1.04);
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 22px;
  gap: 10px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2px;
}

.tag {
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand);
  font-weight: 600;
}

.card__title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.card:hover .card__title {
  color: var(--brand);
}

.card__desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  max-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__more {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card__more::after {
  content: "→";
  transition: transform 0.25s ease;
}

.card:hover .card__more::after {
  transform: translateX(4px);
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.card__price {
  margin-top: 10px;
  color: var(--price);
  font-weight: 800;
  font-size: 1.05rem;
}

/* Partners */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.partner-item {
  --i: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  transition-delay: calc(var(--i) * 0.03s);
}

.partner-item.is-in {
  opacity: 1;
  transform: translateY(0);
}

.partner-item.reveal--zoom.is-in {
  transform: translateY(0) scale(1);
}

.partner-item:hover {
  border-color: rgba(var(--brand-rgb), 0.45);
  box-shadow: 0 6px 16px rgba(26, 35, 50, 0.06);
}

.partner-item img {
  max-height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0.25);
  opacity: 0.9;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.partner-item:hover img {
  filter: none;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .partner-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* About teaser */
.about-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-block__text h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.about-block__text p {
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.about-stats div {
  background: var(--bg);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.about-stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--ink);
}

.about-stats span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.about-block__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--bg);
}

.about-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Inquiry form */
.inquiry {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
  gap: 36px 48px;
  align-items: start;
  padding: 40px 40px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.inquiry__intro {
  padding-top: 4px;
}

.inquiry__eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.inquiry h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.25;
  color: var(--ink);
  font-weight: 800;
}

.inquiry__lead {
  margin: 0 0 20px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 28em;
}

.inquiry__perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.inquiry__perks li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.inquiry__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.inquiry__hotline {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
  color: var(--ink);
}

.inquiry__hotline span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.inquiry__hotline strong {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.inquiry__hotline:hover strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.inquiry-group {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.inquiry-group legend {
  padding: 0;
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice {
  position: relative;
  cursor: pointer;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fafafa;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.choice:hover span {
  border-color: #cfcfcf;
  background: #fff;
}

.choice input:focus-visible + span {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.choice input:checked + span {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.28);
  color: #fff;
  font-weight: 700;
}

.inquiry-contact {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.inquiry-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.inquiry-form label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.inquiry-form label .req {
  color: var(--price);
}

.inquiry-form input[type="tel"],
.inquiry-form input[type="text"] {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-form input[type="tel"]:focus,
.inquiry-form input[type="text"]:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.2);
}

.inquiry-form .field--submit {
  display: flex;
  align-items: flex-end;
}

.inquiry-form .btn {
  min-width: 148px;
  min-height: 46px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 18px rgba(var(--brand-rgb), 0.28);
}

.inquiry-form .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(var(--brand-rgb), 0.34);
}

.inquiry-msg {
  margin: 0;
  min-height: 1.4em;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.inquiry--compact {
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 16px;
}

.inquiry--compact .inquiry__lead {
  margin-bottom: 0;
}

.inquiry--compact .inquiry-contact {
  grid-template-columns: 1fr;
}

.inquiry--compact .inquiry-form .btn {
  width: 100%;
}

.detail__side .inquiry {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  .choice span,
  .inquiry-form .btn {
    transition: none;
  }

  .inquiry-form .btn:hover {
    transform: none;
  }
}

/* Page banner (inner pages) */
.page-banner {
  background: linear-gradient(120deg, #f4f7fa 0%, #e7f0f6 100%);
  color: var(--ink);
  padding: 44px 0 36px;
  border-bottom: 1px solid var(--line);
}

.page-banner h1 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.page-banner p {
  margin: 0;
  color: var(--ink-soft);
}

.breadcrumb {
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.breadcrumb a:hover {
  color: var(--ink);
}

/* Detail */
.detail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.detail__main {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.detail__cover {
  margin: -28px -28px 24px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--bg);
}

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

.detail__main h1 {
  margin: 0 0 12px;
  font-size: 1.75rem;
}

.detail__intro {
  color: var(--ink-soft);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.detail__content {
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.detail__content img {
  margin: 12px auto;
  border-radius: 8px;
}

/* Pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.pagination a,
.pagination span {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 600;
}

.pagination a:hover,
.pagination .is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid a {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.gallery-grid a:hover img {
  transform: scale(1.06);
}

/* About page prose */
.prose {
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}

.prose h1 {
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.prose p {
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.prose .about-imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.prose .about-imgs img {
  border-radius: 10px;
  width: 100%;
}

/* Custom form page */
.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-panel .layui-form-label {
  width: auto;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-ink);
  padding: 56px 0 28px;
  margin-top: 0;
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 28px;
  margin-bottom: 36px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

.site-footer a,
.site-footer a:link,
.site-footer a:visited {
  color: var(--footer-ink);
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fff;
}

.footer-brand p {
  margin: 8px 0 0;
  line-height: 1.7;
  color: var(--footer-ink);
}

.footer-brand__company {
  margin: 6px 0 0;
  color: #d5dee6;
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0;
  color: var(--footer-ink);
}

.footer-cities {
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  font-size: 0.92rem;
  line-height: 1.4;
}

.footer-qr img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--footer-ink);
}

.footer-bottom__sep {
  opacity: 0.45;
}

.footer-bottom a,
.footer-bottom a:link,
.footer-bottom a:visited {
  color: var(--footer-ink);
}

.footer-bottom a:hover {
  color: #fff;
}

/* Float panel — PC: right middle */
.float-panel {
  position: fixed !important;
  right: 16px !important;
  left: auto !important;
  top: 50% !important;
  bottom: auto !important;
  z-index: 90;
  transform: translateY(-50%) !important;
}

.float-panel__pc {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 148px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(26, 35, 50, 0.14);
}

.float-panel__mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.float-wx {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.float-wx img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f7fa;
  border: 1px solid var(--line);
}

.float-wx span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.float-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 6px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--ink);
  text-align: center;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(var(--brand-rgb), 0.16);
}

.float-phone__label {
  font-size: 0.7rem;
  color: var(--ink-soft);
}

.float-phone__num {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--brand);
}

.float-phone:hover .float-phone__num {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.float-hi {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  background: var(--cta);
  color: var(--cta-ink);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(var(--brand-rgb), 0.28);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.float-hi:hover {
  background: var(--cta-dark);
  box-shadow: 0 8px 18px rgba(var(--brand-rgb), 0.36);
}

.float-panel__pc .to-top {
  width: 100%;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.float-panel__pc .to-top:hover {
  color: var(--ink);
  border-color: rgba(var(--brand-rgb), 0.35);
}

.float-dock__item {
  position: relative;
}

.float-dock__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(26, 35, 50, 0.14);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.float-dock__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.float-dock__btn--wx {
  color: #07c160;
}

.float-dock__btn--tel {
  color: var(--brand);
}

.float-dock__btn--hi {
  background: var(--cta);
  border-color: var(--cta);
  color: var(--cta-ink);
  box-shadow: 0 6px 16px rgba(var(--brand-rgb), 0.28);
}

.float-dock__btn--top {
  color: var(--ink-soft);
}

.float-dock__btn.is-open,
.float-dock__btn:active {
  transform: scale(0.96);
}

.float-dock__popup {
  position: absolute;
  right: calc(100% + 10px);
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 132px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(26, 35, 50, 0.18);
  z-index: 2;
}

.float-dock__popup[hidden] {
  display: none !important;
}

.float-dock__popup img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f7fa;
}

.float-dock__popup span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .float-panel {
    left: auto !important;
    right: 10px !important;
    top: auto !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    transform: none !important;
  }

  .float-panel__pc {
    display: none;
  }

  .float-panel__mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 48px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
}

/* Empty */
.empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--ink-soft);
  background: var(--bg);
  border-radius: var(--radius);
}

/* PDF / Brochure HTML viewer */
.pdf-frame {
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 520px;
  max-height: 900px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #2b2b2b;
}

.pdf-frame__viewer,
.pdf-frame iframe,
.pdf-frame .pdfobject {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #2b2b2b;
}

.pdf-actions {
  margin-top: 16px;
  text-align: center;
}

.pdf-fallback {
  margin-top: 12px;
  text-align: center;
  color: var(--ink-soft);
}

.brochure-section {
  padding-top: 24px;
}

.brochure {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.brochure__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: #15202b;
  color: #fff;
}

.brochure__btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

.brochure__btn:hover,
.brochure__btn:focus {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.brochure__btn--ghost {
  border-color: rgba(255, 225, 0, 0.55);
  color: #ffe100;
}

.brochure__pager {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 96px;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}

.brochure__page-input {
  width: 52px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  text-align: center;
  padding: 6px 4px;
  font: inherit;
}

.brochure__stage {
  position: relative;
  background: #0f141a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.brochure__page {
  margin: 0;
  width: 100%;
  max-width: 1100px;
  padding: 12px;
}

.brochure__page img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.brochure__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.brochure__nav--prev { left: 10px; }
.brochure__nav--next { right: 10px; }

.brochure__nav:hover {
  background: #fff;
}

.brochure__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 14px 16px;
  background: var(--bg);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.brochure__thumb {
  flex: 0 0 auto;
  width: 112px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--white);
  padding: 4px;
  cursor: pointer;
  scroll-snap-align: center;
  color: var(--ink-soft);
}

.brochure__thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #ddd;
}

.brochure__thumb span {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  margin-top: 4px;
}

.brochure__thumb.is-active {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 0 0 2px rgba(var(--brand-rgb), 0.15);
}

.brochure__hint {
  margin-top: 16px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

@media (max-width: 768px) {
  .pdf-frame {
    height: 65vh;
    min-height: 420px;
  }

  .brochure__nav {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .brochure__nav--prev { left: 4px; }
  .brochure__nav--next { right: 4px; }

  .brochure__page {
    padding: 8px;
  }

  .brochure__thumb {
    width: 88px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .about-block,
  .detail {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .brand__meta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 18px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    z-index: 101;
    -webkit-overflow-scrolling: touch;
  }

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

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .site-nav__link {
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 12px;
  }

  .site-nav__link::after {
    left: 12px;
    bottom: 10px;
    transform: translateX(0) scaleX(0);
    transform-origin: left center;
  }

  .site-nav__link:hover::after,
  .site-nav__link.is-active::after {
    transform: translateX(0) scaleX(1);
  }

  .site-nav__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .site-nav__phone {
    align-items: flex-start;
    padding: 0 12px;
  }

  .site-nav__cta {
    width: 100%;
  }

  .hero {
    min-height: 56vh;
  }

  .hero__slides {
    min-height: 56vh;
  }

  .hero__slide {
    align-items: flex-end;
  }

  .hero__content {
    padding: 48px 0 72px;
  }

  .hero__nav {
    width: 34px;
    height: 34px;
    font-size: 1.15rem;
  }

  .hero__nav--prev {
    left: 10px;
  }

  .hero__nav--next {
    right: 10px;
  }

  .section {
    padding: 40px 0;
  }

  .hero + .section {
    padding-top: 32px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid,
  .partner-grid,
  .gallery-grid,
  .about-stats,
  .spotlight-grid,
  .value-grid,
  .prose .about-imgs,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
  }

  .footer-links li {
    margin-bottom: 0;
  }

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

  .hero__brand {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

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

  .inquiry {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 18px;
    border-radius: 16px;
  }

  .inquiry-contact {
    grid-template-columns: 1fr;
  }

  .inquiry-form .btn {
    width: 100%;
  }

  .detail__main {
    padding: 18px;
  }

  .detail__cover {
    margin: -18px -18px 18px;
  }
}

/* Hero SEO: single H1 + slide subtitle */
.hero__slide-title {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

/* Related recommendations */
.related {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.related h2 {
  margin: 0 0 16px;
  font-size: 1.25rem;
}
.related__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.related__item a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.related__cover {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg);
  margin-bottom: 8px;
}
.related__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related__name {
  display: block;
  font-size: 0.95rem;
  line-height: 1.4;
}
.related__more {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}
.detail__links {
  margin-top: 24px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* City / blog helpers */
.city-page h2 {
  margin: 32px 0 12px;
}
.city-page h2:first-child {
  margin-top: 0;
}
.city-faq h3 {
  margin: 18px 0 6px;
  font-size: 1.05rem;
}
.city-more-links {
  margin-top: 28px;
  color: var(--ink-soft);
}
.blog-cats {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-cats a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
}
.blog-cats a:hover {
  border-color: rgba(var(--brand-rgb), 0.45);
  background: var(--brand-soft);
  color: var(--ink);
}
.blog-cats a.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 600;
}
.error-404 {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 48px;
}
.error-404__links {
  list-style: none;
  margin: 24px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  max-width: 720px;
}

@media (max-width: 768px) {
  .related__list {
    grid-template-columns: 1fr;
  }
}
