html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

/* =========================
   0. HIRO & CO - GLASS NAV
========================= */

.hiro-site-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: .85rem 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-.75rem);
  transition:
    opacity .75s ease,
    transform .75s ease;
}
body.hiro-hero-revealed .hiro-site-nav {
  opacity: 1;
  transform: translateY(0);
}

.hiro-site-nav-inner {
  width: min(100% - 2rem, 1320px);
  min-height: 4rem;
  margin: 0 auto;
  padding: .65rem .85rem .65rem 1rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  border: 1px solid rgba(255, 255, 255, .03);
  border-radius: 999px;
  background: rgba(8, 8, 8, .34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .08);

  pointer-events: auto;
}

.hiro-nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  text-decoration: none;
  gap: .75rem;
}

.hiro-nav-brand-text {
  color: rgba(255, 255, 255, .92);
  font-size: .86rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hiro-nav-logo {
  display: block;
  width: clamp(42px, 4vw, 56px);
  height: auto;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, .12));
}

.hiro-nav-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 2.75rem;
  padding: .78rem 1.25rem;
  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .92);
  color: #111;

  font-size: .82rem;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;

  transition:
    transform .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    color .25s ease;
}

.hiro-nav-reserve:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: #fff;
  color: #111;
}

@media (max-width: 767.98px) {
  .hiro-site-nav {
    padding: .65rem 0;
  }

  .hiro-site-nav-inner {
    width: min(100% - 1rem, 1320px);
    min-height: 3.6rem;
    padding: .55rem .65rem .55rem .75rem;
  }

  .hiro-nav-brand {
    height: 2.7rem;
    min-width: 2.7rem;
  }

  .hiro-nav-brand-text {
    display: none;
  }

  .hiro-nav-logo {
    width: 42px;
  }

  .hiro-nav-reserve {
    min-height: 2.45rem;
    padding: .7rem 1rem;
    font-size: .78rem;
    letter-spacing: .08em;
  }
}


/* =========================
   1. HIRO HERO BASE
========================= */

body.hiro-intro-active {
  overflow: hidden;
}

.hiro-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
  color: #fff;
}

/* video */
.hiro-hero-canvas,
.hiro-hero-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #050505;
}

.hiro-hero-canvas {
  object-fit: cover;
}

.hiro-hero-poster {
  object-fit: cover;
  opacity: 1;
  transition: opacity .45s ease;
}

body.hiro-video-ready .hiro-hero-poster {
  opacity: 0;
}

.hiro-hero-video-source {
  position: fixed;
  left: -10px;
  bottom: -10px;
  width: 1px;
  height: 1px;
  opacity: .01;
  pointer-events: none;
  z-index: -1;
}

.hiro-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, .18), rgba(0, 0, 0, .72)),
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .2), rgba(0, 0, 0, .72));
}

.hiro-hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  min-height: 100svh;
  width: min(92%, 980px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  opacity: 0;
  transform: translateY(1.2rem);
}

.hiro-hero-kicker {
  margin: 0 0 1rem;
  font-size: clamp(.8rem, 1.2vw, .95rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

.hiro-hero-title {
  margin: 0;
  font-size: clamp(3.1rem, 6.8vw, 6.8rem);
  line-height: .95;
  letter-spacing: .12em;
  font-weight: 400;
  text-transform: uppercase;
}

.hiro-hero-text {
  max-width: 720px;
  margin: 1.4rem auto 0;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, .84);
}

.hiro-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.hiro-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  padding: .85rem 1.45rem;
  border-radius: 999px;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform .25s ease,
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease;
}

.hiro-btn:hover {
  transform: translateY(-2px);
}

.hiro-btn-primary {
  background: #ffffff;
  color: #111;
  border: 1px solid #ffffff;
}

.hiro-btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .42);
  backdrop-filter: blur(10px);
}

.hiro-btn-ghost:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .75);
}

/* =========================
   INTRO MASK
========================= */
.hiro-intro-mask {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
}

.hiro-intro-door {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #030303;
  will-change: transform;
}

.hiro-intro-door-left {
  left: 0;
}

.hiro-intro-door-right {
  right: 0;
}

.hiro-intro-line {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 1px;
    height: 100%;
    transform: translate(-50%, -50%) scaleY(0);
    transform-origin: center center;
    background: rgba(255, 255, 255, .94);
    box-shadow:
        0 0 16px rgba(255, 255, 255, .42),
        0 0 42px rgba(255, 255, 255, .18);
}

.hiro-intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(90px, 12vw, 180px);
  height: auto;
  z-index: 3;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(180deg) scale(.92);
  /*filter: drop-shadow(0 0 22px rgba(255, 255, 255, .12));*/
  will-change: transform, opacity;
}

/* =========================
   INTRO ANIMATION STATES
========================= */
body.hiro-intro-start .hiro-intro-line {
    animation: hiroLineIn .58s cubic-bezier(.22, 1, .36, 1) both;
}

body.hiro-intro-start .hiro-intro-logo {
  animation: hiroLogoIn 1.25s cubic-bezier(.22, 1, .36, 1) .45s both;
}

body.hiro-intro-open .hiro-intro-door-left {
  animation: hiroDoorLeftExit 1.05s cubic-bezier(.76, 0, .24, 1) forwards;
}

body.hiro-intro-open .hiro-intro-door-right {
  animation: hiroDoorRightExit 1.05s cubic-bezier(.76, 0, .24, 1) forwards;
}

body.hiro-intro-open .hiro-intro-line {
  animation: hiroLineOut .5s cubic-bezier(.76, 0, .24, 1) both;
}

body.hiro-intro-open .hiro-intro-logo {
  animation: hiroLogoOut .9s ease .18s both;
}

body.hiro-hero-revealed .hiro-hero-content {
  animation: hiroHeroContentIn .95s ease forwards;
}

@keyframes hiroLineIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scaleY(0);
    }

    8% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scaleY(1);
    }
}

@keyframes hiroLogoIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg) scale(.9);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
}

@keyframes hiroLogoOut {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        /*filter: drop-shadow(0 0 22px rgba(255, 255, 255, .14));*/
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg) scale(.94);
        /*filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0));*/
    }
}

@keyframes hiroDoorLeftExit {
  to {
    transform: translateY(-100%);
  }
}

@keyframes hiroDoorRightExit {
  to {
    transform: translateY(100%);
  }
}

@keyframes hiroLineOut {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scaleY(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scaleY(0);
    }
}

@keyframes hiroHeroContentIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 767.98px) {
  .hiro-hero-content {
    width: min(88%, 560px);
  }

  .hiro-hero-title {
    font-size: clamp(3.3rem, 15vw, 4.8rem);
    line-height: .92;
    letter-spacing: .06em;
    font-weight: 500;
  }

  .hiro-hero-actions {
    width: 100%;
  }

  .hiro-btn {
    width: min(100%, 280px);
  }

  .hiro-intro-logo {
    width: clamp(90px, 28vw, 145px);
  }
}

/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  body.hiro-intro-active {
    overflow: auto;
  }

  .hiro-intro-mask {
    display: none;
  }

  .hiro-hero-content {
    opacity: 1;
    transform: none;
  }

  .hiro-btn,
  .hiro-card,
  .hiro-intro-logo,
  .hiro-intro-door,
  .hiro-intro-line {
    animation: none !important;
    transition: none !important;
  }
}


/* ========================
   2. HIRO & CO - PRICING
========================= */

.hiro-pricing {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(150, 22, 22, .22), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, .07), transparent 28%),
    linear-gradient(135deg, #090909 0%, #111 42%, #050505 100%);
  color: #fff;
  overflow: hidden;
}
.hiro-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
  pointer-events: none;
}
.hiro-pricing::after {
  content: "";
  position: absolute;
  right: max(-8rem, -8vw);
  top: 8%;
  width: clamp(220px, 34vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(130, 18, 18, .18), transparent 62%);
  opacity: .85;
  pointer-events: none;
}

.hiro-pricing-inner {
  position: relative;
  z-index: 1;
}

.hiro-section-heading {
  max-width: 760px;
  margin: 0 auto 2.2rem;
}

.hiro-section-kicker {
  margin: 0 0 .85rem;
  color: rgba(255, 255, 255, .64);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hiro-section-title {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: .035em;
}

.hiro-section-text {
  max-width: 620px;
  margin: 1.1rem auto 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(.98rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.hiro-hours-card {
  width: min(100%, 520px);
  margin: 0 auto 1rem;
  padding: .9rem 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;

  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .035) 58%, rgba(120, 18, 18, .07));
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .1),
    inset 0 -1px 0 rgba(255, 255, 255, .035);

  color: rgba(255, 255, 255, .9);
  font-size: .88rem;
  letter-spacing: .08em;
}

.hiro-hours-card span {
  position: relative;
}

.hiro-hours-card span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -.65rem;
  width: 1px;
  height: .9rem;
  background: rgba(255, 255, 255, .22);
  transform: translateY(-50%);
}

.hiro-pricing-grid {
  margin-top: 1rem;
}

.hiro-price-card {
  height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 1.5rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .035) 54%, rgba(120, 18, 18, .08));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .1),
    inset 0 -1px 0 rgba(255, 255, 255, .035);
  transition:
    transform .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.hiro-price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .28);
}

.hiro-price-card-featured {
  border-color: rgba(255, 255, 255, .24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .045) 52%, rgba(150, 20, 20, .12));
}

.hiro-price-card h3 {
  min-height: 2.6rem;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;

  color: rgba(255, 255, 255, .94);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hiro-price-row {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hiro-price-row span {
  color: rgba(255, 255, 255, .66);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hiro-price-row strong {
  color: #fff;
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.02em;
}

.hiro-children-pricing {
  margin-top: 1.6rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1.5rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .03) 58%, rgba(120, 18, 18, .07));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hiro-children-header {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  flex-wrap: wrap;
}

.hiro-children-header p {
  margin: 0;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hiro-children-header span {
  color: rgba(255, 255, 255, .58);
  font-size: .9rem;
}

.hiro-child-price {
  height: 100%;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, .24);
  border: 1px solid rgba(255, 255, 255, .09);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hiro-child-price span {
  color: rgba(255, 255, 255, .68);
  font-size: .86rem;
}

.hiro-child-price strong {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
}

/* =========================
   PRICING RESPONSIVE
========================= */
@media (max-width: 767.98px) {
  .hiro-section-title {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: .025em;
  }

  .hiro-pricing {
    padding: 4.5rem 0;
  }

  .hiro-hours-card {
    border-radius: 1.25rem;
    gap: .65rem;
  }

  .hiro-hours-card span {
    width: 100%;
    text-align: center;
  }

  .hiro-hours-card span + span::before {
    display: none;
  }

  .hiro-price-card h3 {
    min-height: auto;
  }

  .hiro-price-row strong {
    font-size: 1.65rem;
  }

  .hiro-children-header {
    align-items: flex-start;
  }

  .hiro-child-price {
    padding: .95rem;
  }
}


/* ==================================
   HIRO & CO - SECTION FADE 公用过渡层
===================================== */

:root {
  --hiro-section-fade-height: clamp(160px, 18vw, 320px);
  --hiro-section-fade-color: #050505
}

.hiro-blend-section {
  position: relative;
  overflow: hidden;
}

.hiro-section-content {
  position: relative;
  z-index: 3;
}

.hiro-section-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: var(--hiro-section-fade-height, clamp(120px, 14vw, 260px));
  pointer-events: none;
}

.hiro-section-fade-top {
  top: 0;
  z-index: 0;
  background:
    linear-gradient(
      180deg,
      var(--hiro-section-fade-color, #050505) 0%,
      rgba(5, 5, 5, .72) 42%,
      rgba(5, 5, 5, 0) 100%
    );
}

.hiro-section-fade-bottom {
  bottom: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0) 0%,
      rgba(5, 5, 5, .72) 58%,
      var(--hiro-section-fade-color, #050505) 100%
    );
}


/* =================================
   3. HIRO & CO - SIGNATURE GALLERY
==================================== */

.hiro-signature {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(150, 22, 22, .18), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, .055), transparent 30%),
    linear-gradient(135deg, #050505 0%, #101010 46%, #070707 100%);
  color: #fff;
  overflow: hidden;
}

.hiro-signature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  pointer-events: none;
}

.hiro-signature::after {
  content: "";
  position: absolute;
  left: max(-10rem, -10vw);
  top: 12%;
  width: clamp(240px, 36vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(130, 18, 18, .15), transparent 64%);
  pointer-events: none;
}

.hiro-signature-heading {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin-bottom: 2.8rem;
  text-align: center;
}

/* =========================
   SIGNATURE MARQUEE
   JS conveyor version
========================= */
.hiro-gallery-marquee {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
}

.hiro-gallery-marquee::before,
.hiro-gallery-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 4;
  width: min(12vw, 150px);
  height: 100%;
  pointer-events: none;
}

.hiro-gallery-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #050505, rgba(5, 5, 5, 0));
}

.hiro-gallery-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #070707, rgba(7, 7, 7, 0));
}

.hiro-gallery-track {
  --hiro-gallery-gap: clamp(.65rem, 1.2vw, 1rem);

  position: relative;
  width: 100%;
  overflow: visible;
}

.hiro-gallery-group {
  display: flex;
  width: max-content;
  gap: var(--hiro-gallery-gap);

  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* =========================
   SIGNATURE CARDS
========================= */
.hiro-gallery-card {
  position: relative;
  flex: 0 0 clamp(220px, 24vw, 390px);
  aspect-ratio: 2 / 3;

  border-radius: .6rem;
  overflow: hidden;
  background: #111;

  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.hiro-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .38));
  opacity: .85;
  pointer-events: none;
}

.hiro-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: translate3d(0, 0, 0) scale(1.01);
  backface-visibility: hidden;

  transition:
    transform .55s ease,
    filter .55s ease;
}

.hiro-gallery-card:hover img {
  transform: translate3d(0, 0, 0) scale(1.08);
  filter: contrast(1.06) saturate(1.05);
}

/* =========================
   SIGNATURE SECTION FADES
========================= */
.hiro-signature .hiro-section-fade-top {
  z-index: 0;
}

.hiro-signature .hiro-section-fade-bottom {
  z-index: 1;
}

/* =========================
   SIGNATURE RESPONSIVE
========================= */
@media (min-width: 1400px) {
  .hiro-gallery-card {
    flex-basis: 410px;
  }
}

@media (max-width: 767.98px) {
  .hiro-signature {
    padding: 4.5rem 0;
  }

  .hiro-signature::after {
    display: none;
  }

  .hiro-signature-heading {
    margin-bottom: 2rem;
  }

  .hiro-gallery-track {
    --hiro-gallery-gap: .65rem;
  }

  .hiro-gallery-card {
    flex-basis: clamp(170px, 58vw, 230px);
    aspect-ratio: 2 / 3;
  }

  .hiro-gallery-marquee::before,
  .hiro-gallery-marquee::after {
    width: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hiro-gallery-group,
  .hiro-gallery-card img {
    transition: none !important;
    transform: none !important;
  }
}


/* =============================
   4. HIRO & CO - MENU PREVIEW
================================ */

:root {
  --hiro-nav-bottom: 86px;
}

/* =========================
   HIRO MENU - SECTION BASE
========================= */
.hiro-menu {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) 0;
  background:
    radial-gradient(circle at 22% 16%, rgba(150, 22, 22, .18), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, .055), transparent 30%),
    linear-gradient(135deg, #070707 0%, #111 48%, #050505 100%);
  color: #fff;

  /*
    注意：
    sticky tabs 需要祖先不裁切，所以这里必须 visible。
    如果外层 hiro-blend-section 有 overflow:hidden，
    这里用更高优先级覆盖。
  */
  overflow: visible;
}

.hiro-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  pointer-events: none;
}

.hiro-menu::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  width: clamp(240px, 38vw, 580px);
  aspect-ratio: 1;
  border-radius: 50%;
  /*border: 1px solid rgba(255, 255, 255, .05);*/
  background:
    radial-gradient(circle, rgba(130, 18, 18, .16), transparent 64%);
  pointer-events: none;
}

.hiro-menu-inner {
  position: relative;
  z-index: 3;
}

.hiro-menu-heading {
  max-width: 820px;
  margin: 0 auto 2.4rem;
}

/* =========================
   HIRO MENU - TABS STICKY
========================= */
.hiro-menu-tabs-sentinel {
  position: relative;
  height: 1px;
  pointer-events: none;
}

.hiro-menu-tabs {
  position: sticky;
  top: var(--hiro-nav-bottom);
  z-index: 40;

  display: flex;
  align-items: center;
  gap: .65rem;

  margin: 0 auto 2rem;
  padding: .55rem 0;

  background: transparent;
  border-bottom: 1px solid transparent;

  transition:
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.hiro-menu-tabs.is-stuck {
  background:
    linear-gradient(
      180deg,
      rgba(5, 5, 5, .72),
      rgba(5, 5, 5, .42)
    );
  border-bottom-color: rgba(255, 255, 255, .08);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .055);

  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

body.hiro-menu-tabs-stuck .hiro-site-nav-inner {
  border-bottom-color: rgba(255, 255, 255, .08);
}

/* =========================
   HIRO MENU - TABS CONTENT
========================= */
.hiro-menu-tabs-rail {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: .65rem;

  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: .45rem .1rem;
  cursor: grab;

  scrollbar-width: none;
}

.hiro-menu-tabs-rail::-webkit-scrollbar {
  display: none;
}

.hiro-menu-tabs-rail.is-dragging {
  cursor: grabbing;
}

.hiro-menu-tab {
  flex: 0 0 auto;
  min-height: 2.8rem;
  padding: .75rem 1.1rem;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  color: rgba(255, 255, 255, .72);

  font-size: .82rem;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;

  user-select: none;
  transition:
    transform .2s ease,
    color .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.hiro-menu-tab:hover {
  transform: translateY(-1px);
  color: rgba(255, 255, 255, .92);
  border-color: rgba(255, 255, 255, .24);
}

.hiro-menu-tab.is-active {
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04) 55%, rgba(130, 18, 18, .16));
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .26),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}

.hiro-menu-tabs-arrow {
  flex: 0 0 auto;
  width: 2.8rem;
  height: 2.8rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .025));
  color: rgba(255, 255, 255, .82);

  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;

  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity .18s ease,
    transform .18s ease,
    background .18s ease,
    border-color .18s ease;
}

.hiro-menu-tabs-arrow:hover {
  transform: translate3d(0, 0, 0) scale(1.035);
  border-color: rgba(255, 255, 255, .26);
}

.hiro-menu-tabs-arrow:active {
  transform: translate3d(0, 0, 0) scale(.98);
}

.hiro-menu-tabs-arrow.is-disabled {
  opacity: .35;
  pointer-events: none;
}

.hiro-menu-tabs-arrow i {
  font-size: 1.15rem;
  line-height: 1;
  pointer-events: none;
  transform: translateZ(0);
}

/* =========================
   HIRO MENU - STAGE
========================= */
.hiro-menu-stage {
  position: relative;
  margin-top: .75rem;
}

.hiro-menu-gallery,
.hiro-menu-panel {
  height: 100%;
}

/* =========================
   HIRO MENU - GALLERY
========================= */
.hiro-menu-gallery-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;

  border-radius: 1.65rem;
  border: 1px solid rgba(255, 255, 255, .06);
  background: #111;

  box-shadow:
    0 28px 80px rgba(0, 0, 0, .38),
    inset 0 1px 0 rgba(255, 255, 255, .08);

  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.hiro-menu-gallery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .36));
  pointer-events: none;
}

.hiro-menu-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1.01);
  transition: opacity .42s ease;
  will-change: opacity;
}

.hiro-menu-gallery-img.is-on {
  opacity: 1;
}

.hiro-menu-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 5;

  width: 2.75rem;
  height: 2.75rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .28);
  color: rgba(255, 255, 255, .92);

  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;

  transform: translate3d(0, -50%, 0) scale(1);
  transition:
    transform .18s ease,
    background .18s ease,
    opacity .18s ease,
    border-color .18s ease;
}

.hiro-menu-gallery-nav.is-prev {
  left: .85rem;
}

.hiro-menu-gallery-nav.is-next {
  right: .85rem;
}

.hiro-menu-gallery-nav:hover {
  transform: translate3d(0, -50%, 0) scale(1.035);
  background: rgba(0, 0, 0, .42);
  border-color: rgba(255, 255, 255, .28);
}

.hiro-menu-gallery-nav:active {
  transform: translate3d(0, -50%, 0) scale(.98);
}

.hiro-menu-gallery-nav.is-disabled {
  opacity: .35;
  pointer-events: none;
}

.hiro-menu-gallery-nav i {
  font-size: 1.3rem;
  line-height: 1;
  pointer-events: none;
  transform: translateZ(0);
}

.hiro-menu-gallery-meta {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hiro-menu-gallery-label {
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
}

.hiro-menu-gallery-count {
  color: rgba(255, 255, 255, .58);
  font-size: .86rem;
  font-variant-numeric: tabular-nums;
}

/* =========================
   HIRO MENU - PANEL
========================= */
.hiro-menu-panel {
  padding: 1.15rem;
  border-radius: 1.65rem;
  border: 1px solid rgba(255, 255, 255, .11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .028) 58%, rgba(120, 18, 18, .08));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hiro-menu-panel-head {
  margin-bottom: 1rem;
  padding: .25rem .2rem .85rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hiro-menu-panel-kicker {
  margin: 0 0 .35rem;
  color: rgba(255, 255, 255, .48);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hiro-menu-panel-title {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hiro-menu-panel-hint {
  color: rgba(255, 255, 255, .46);
  font-size: .86rem;
}

/* =========================
   HIRO MENU - ACCORDION
========================= */
.hiro-menu-accordion {
  position: relative;
}

.hiro-menu-acc {
  border-top: 1px solid rgba(255, 255, 255, .075);
}

.hiro-menu-acc:first-child {
  border-top: 0;
}

.hiro-menu-acc-btn {
  width: 100%;
  padding: .9rem .45rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;

  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .68);

  text-align: left;
  cursor: pointer;
  transition:
    color .18s ease,
    background .18s ease;
}

.hiro-menu-acc-btn:hover {
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .035);
  border-radius: .85rem;
}

.hiro-menu-acc-title {
  display: inline-flex;
  align-items: center;
  gap: .55rem;

  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hiro-menu-acc-dot {
  flex: 0 0 auto;
  width: .62rem;
  height: .62rem;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 1px;
  transform: rotate(45deg);
  transition:
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.hiro-menu-acc.is-open .hiro-menu-acc-dot {
  border-color: rgba(190, 34, 34, .95);
  background: rgba(190, 34, 34, .85);
  box-shadow: 0 0 16px rgba(190, 34, 34, .22);
  transform: rotate(45deg) scale(.92);
}

.hiro-menu-acc-chev {
  color: rgba(255, 255, 255, .42);
  transition: transform .22s ease;
}

.hiro-menu-acc.is-open .hiro-menu-acc-chev {
  transform: rotate(180deg);
}

.hiro-menu-acc-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .26s ease;
}

.hiro-menu-acc-inner {
  padding: 0 .45rem .9rem;
}

.hiro-menu-item {
  padding: .58rem 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;

  border-bottom: 1px dashed rgba(255, 255, 255, .095);
}

.hiro-menu-item:last-child {
  border-bottom: 0;
}

.hiro-menu-item-name {
  flex: 1 1 auto;
  color: rgba(255, 255, 255, .86);
  line-height: 1.38;
  font-size: .94rem;
}

.hiro-menu-item-price {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .58);
  font-size: .88rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hiro-menu-empty {
  padding: 1.2rem .6rem;
  color: rgba(255, 255, 255, .58);
  font-size: .92rem;
  line-height: 1.6;
}

/* =========================
   HIRO MENU - RESPONSIVE
========================= */
@media (max-width: 991.98px) {
  .hiro-menu-gallery-frame {
    aspect-ratio: 1 / 1;
  }

  .hiro-menu-panel {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .hiro-menu {
    padding: 4.5rem 0;
  }

  .hiro-menu-heading {
    margin-bottom: 2rem;
  }

  .hiro-menu-tabs {
    gap: .45rem;
    margin-bottom: 1.6rem;
    padding: .45rem 0;
  }

  .hiro-menu-tabs-arrow {
    width: 2.55rem;
    height: 2.55rem;
  }

  .hiro-menu-tab {
    min-height: 2.55rem;
    padding: .68rem .95rem;
    font-size: .76rem;
    letter-spacing: .07em;
  }

  .hiro-menu-gallery-frame,
  .hiro-menu-panel {
    border-radius: 1.3rem;
  }

  .hiro-menu-panel {
    padding: .95rem;
  }

  .hiro-menu-panel-head {
    align-items: flex-start;
  }

  .hiro-menu-panel-title {
    font-size: .96rem;
  }

  .hiro-menu-acc-btn {
    padding: .85rem .35rem;
  }

  .hiro-menu-acc-title {
    font-size: .8rem;
    letter-spacing: .08em;
  }

  .hiro-menu-item-name {
    font-size: .9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hiro-menu-tabs-rail {
    scroll-behavior: auto;
  }

  .hiro-menu-tabs-arrow,
  .hiro-menu-tab,
  .hiro-menu-gallery-img,
  .hiro-menu-gallery-nav,
  .hiro-menu-acc-panel,
  .hiro-menu-acc-chev,
  .hiro-menu-acc-dot {
    transition: none !important;
  }
}


/* ================================
   5. HIRO & CO - SOCIAL & REVIEWS
=================================== */

.hiro-social {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(150, 22, 22, .18), transparent 34%),
    radial-gradient(circle at 82% 74%, rgba(255, 255, 255, .055), transparent 30%),
    linear-gradient(135deg, #050505 0%, #101010 46%, #070707 100%);
  color: #fff;
  overflow: hidden;
}

.hiro-social::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  pointer-events: none;
}

.hiro-social::after {
  content: "HIRO";
  position: absolute;
  right: -0.08em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, .025);
  font-size: clamp(7rem, 22vw, 24rem);
  line-height: 1;
  letter-spacing: .08em;
  font-weight: 500;
  pointer-events: none;
  user-select: none;
}

.hiro-social-inner {
  position: relative;
  z-index: 3;
}

.hiro-social-heading {
  max-width: 820px;
  margin: 0 auto 3rem;
}

.hiro-social-seals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.hiro-social-seal {
  position: relative;
  min-height: 360px;
  padding: clamp(1.25rem, 2vw, 1.65rem);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-align: center;
  text-decoration: none;

  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, .11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .026) 58%, rgba(120, 18, 18, .07));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, .32),
    inset 0 1px 0 rgba(255, 255, 255, .08);

  overflow: hidden;
  isolation: isolate;

  transition:
    transform .28s ease,
    border-color .28s ease,
    background .28s ease,
    box-shadow .28s ease;
}

.hiro-social-seal::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, .045);
  border-radius: 1.45rem;
  pointer-events: none;
}

.hiro-social-seal::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 38%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150, 22, 22, .18), transparent 68%);
  transform: translate(-50%, -50%) scale(.9);
  opacity: .72;
  z-index: -1;
  transition:
    opacity .28s ease,
    transform .28s ease;
}

.hiro-social-seal:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .035) 56%, rgba(150, 22, 22, .12));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .38),
    inset 0 1px 0 rgba(255, 255, 255, .11);
}

.hiro-social-seal:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.06);
}

.hiro-social-seal-featured {
  border-color: rgba(190, 34, 34, .28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .035) 54%, rgba(150, 22, 22, .16));
}

.hiro-social-seal-mark {
  width: clamp(5.2rem, 8vw, 7rem);
  aspect-ratio: 1;
  margin-bottom: 1.45rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025) 62%, rgba(0, 0, 0, .18));
  box-shadow:
    0 18px 45px rgba(0, 0, 0, .25),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}

.hiro-social-seal-icon {
  width: 58%;
  aspect-ratio: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  transform: rotate(45deg);

  transition:
    border-color .28s ease,
    background .28s ease,
    transform .28s ease;
}

.hiro-social-seal-icon i {
  display: inline-block;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  transform: rotate(-45deg);
}

.hiro-social-seal:hover .hiro-social-seal-icon {
  border-color: rgba(190, 34, 34, .72);
  background: rgba(190, 34, 34, .22);
  transform: rotate(45deg) scale(1.06);
}

.hiro-social-seal-title {
  display: block;
  margin-bottom: .75rem;

  color: rgba(255, 255, 255, .96);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hiro-social-seal-text {
  display: block;
  max-width: 260px;
  min-height: 3.3rem;
  margin: 0 auto 1.35rem;

  color: rgba(255, 255, 255, .64);
  font-size: .94rem;
  line-height: 1.55;
}

.hiro-social-seal-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;

  margin-top: auto;
  padding: .75rem 1.05rem;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055);

  color: rgba(255, 255, 255, .84);
  font-size: .78rem;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;

  transition:
    color .28s ease,
    background .28s ease,
    border-color .28s ease;
}

.hiro-social-seal-action i {
  font-size: .85rem;
}

.hiro-social-seal:hover .hiro-social-seal-action {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .09);
}

/* =============================
   SOCIAL RESPONSIVE
================================ */
@media (max-width: 991.98px) {
  .hiro-social-seals {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
    gap: 1rem;
  }

  .hiro-social-seal {
    min-height: auto;
    padding: 1.35rem 1.25rem;

    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title mark"
      "text mark"
      "action mark";
    align-items: center;
    column-gap: 1rem;
    row-gap: .65rem;

    text-align: left;
  }

  .hiro-social-seal::before {
    inset: .8rem;
    border-radius: 1.25rem;
  }

  .hiro-social-seal-mark {
    grid-area: mark;
    width: clamp(4.2rem, 18vw, 5.4rem);
    margin: 0;
    align-self: center;
  }

  .hiro-social-seal-title {
    grid-area: title;
    margin: 0;
    font-size: 1.25rem;
  }

  .hiro-social-seal-text {
    grid-area: text;
    max-width: none;
    min-height: auto;
    margin: 0;
  }

  .hiro-social-seal-action {
    grid-area: action;
    width: fit-content;
    margin-top: .15rem;
  }
}

@media (max-width: 767.98px) {
  .hiro-social {
    padding: 4.5rem 0;
  }

  .hiro-social-heading {
    margin-bottom: 2rem;
  }

  .hiro-social-seal {
    border-radius: 1.35rem;
  }

  .hiro-social-seal-title {
    font-size: 1.25rem;
  }

  .hiro-social-seal-text {
    font-size: .9rem;
  }
}

@media (max-width: 420px) {
  .hiro-social-seal {
    grid-template-columns: 1fr 4rem;
    column-gap: .8rem;
    padding: 1.2rem 1rem;
  }

  .hiro-social-seal-mark {
    width: 4rem;
  }

  .hiro-social-seal-title {
    font-size: 1.12rem;
    letter-spacing: .08em;
  }

  .hiro-social-seal-text {
    font-size: .88rem;
    line-height: 1.45;
  }

  .hiro-social-seal-action {
    padding: .68rem .9rem;
    font-size: .72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hiro-social-seal,
  .hiro-social-seal::after,
  .hiro-social-seal-icon,
  .hiro-social-seal-action {
    transition: none !important;
  }

  .hiro-social-seal:hover {
    transform: none;
  }
}


/* =========================================
   HIRO & CO - SCROLL REVEAL (卡片动态出现效果)
============================================ */

.hiro-reveal {
  opacity: 0;
  transform: translateY(2rem) scale(.985);
  filter: blur(6px);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.22, 1, .36, 1),
    filter .75s ease;
  will-change: opacity, transform, filter;
}

.hiro-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ========= 价格卡片错峰 ========= */
.hiro-pricing-grid > [class*="col"]:nth-child(1) .hiro-reveal {
  transition-delay: 0s;
}

.hiro-pricing-grid > [class*="col"]:nth-child(2) .hiro-reveal {
  transition-delay: .08s;
}

.hiro-pricing-grid > [class*="col"]:nth-child(3) .hiro-reveal {
  transition-delay: .16s;
}

.hiro-pricing-grid > [class*="col"]:nth-child(4) .hiro-reveal {
  transition-delay: .24s;
}

.hiro-children-pricing.hiro-reveal {
  transition-delay: .18s;
}

/* ========= 社交卡片错峰 ========= */
.hiro-social-seals .hiro-social-seal:nth-child(1) {
  transition-delay: 0s;
}

.hiro-social-seals .hiro-social-seal:nth-child(2) {
  transition-delay: .1s;
}

.hiro-social-seals .hiro-social-seal:nth-child(3) {
  transition-delay: .2s;
}

/* ========= 移动端错峰稍微收一点 ========= */
@media (max-width: 767.98px) {
  .hiro-pricing-grid > [class*="col"]:nth-child(1) .hiro-reveal,
  .hiro-pricing-grid > [class*="col"]:nth-child(2) .hiro-reveal,
  .hiro-pricing-grid > [class*="col"]:nth-child(3) .hiro-reveal,
  .hiro-pricing-grid > [class*="col"]:nth-child(4) .hiro-reveal,
  .hiro-children-pricing.hiro-reveal,
  .hiro-social-seals .hiro-social-seal:nth-child(1),
  .hiro-social-seals .hiro-social-seal:nth-child(2),
  .hiro-social-seals .hiro-social-seal:nth-child(3) {
    transition-delay: 0s;
  }
}


/* =============================
   6. HIRO & CO - FOOTER
================================ */

.hiro-footer {
  position: relative;
  padding: clamp(4.5rem, 7vw, 7rem) 0 2rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(150, 22, 22, .14), transparent 34%),
    linear-gradient(180deg, #050505 0%, #030303 100%);
  color: #fff;
  overflow: hidden;
}

.hiro-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  pointer-events: none;
}

.hiro-footer-inner {
  position: relative;
  z-index: 3;
}

/* =============================
   FOOTER MAIN CARD
================================ */
.hiro-footer-main {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .022) 58%, rgba(120, 18, 18, .06));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, .3),
    inset 0 1px 0 rgba(255, 255, 255, .08);

  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(560px, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

/* =============================
   FOOTER BRAND
================================ */
.hiro-footer-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.hiro-footer-logo-link {
  flex: 0 0 auto;
  width: clamp(64px, 7vw, 88px);
  aspect-ratio: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .035);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hiro-footer-logo {
  width: 68%;
  height: auto;
  display: block;
}

.hiro-footer-name {
  margin-bottom: .6rem;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hiro-footer-desc {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .96rem;
  line-height: 1.7;
}

/* =============================
   FOOTER INFO GRID
================================ */
.hiro-footer-info {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  grid-template-areas:
    "address hours"
    "contact contact";
  gap: 1rem;
}

.hiro-footer-block {
  min-height: 100%;
  padding: 1rem 1.15rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .075);
  background: rgba(0, 0, 0, .18);
}

.hiro-footer-block-address {
  grid-area: address;
}

.hiro-footer-block-hours {
  grid-area: hours;
}

.hiro-footer-block-contact {
  grid-area: contact;
  min-height: 7.2rem;
  padding: 1.15rem 1.35rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;

  background:
    linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .022) 58%, rgba(120, 18, 18, .08));
}

.hiro-footer-contact-text {
  min-width: 0;
}

.hiro-footer-label {
  margin: 0 0 .65rem;
  color: rgba(255, 255, 255, .44);
  font-size: .72rem;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hiro-footer-text {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .96rem;
  line-height: 1.6;
}

.hiro-footer-block-contact .hiro-footer-label {
  margin-bottom: .55rem;
}

.hiro-footer-block-contact .hiro-footer-text {
  font-size: 1.05rem;
  line-height: 1.45;
}

/* =============================
   FOOTER CTA
================================ */
.hiro-footer-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hiro-footer-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 10.5rem;
  min-height: 2.8rem;
  padding: .82rem 1.25rem;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .92);
  color: #111;

  font-size: .8rem;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;

  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.hiro-footer-reserve:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: #fff;
  color: #111;
}

/* =============================
   FOOTER BOTTOM
================================ */
.hiro-footer-bottom {
  margin-top: 1.15rem;
  padding: 0 .25rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  color: rgba(255, 255, 255, .46);
}

.hiro-footer-socials {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.hiro-footer-socials a {
  width: 2.4rem;
  height: 2.4rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .035);
  color: rgba(255, 255, 255, .72);
  text-decoration: none;

  transition:
    transform .22s ease,
    color .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.hiro-footer-socials a:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07);
}

.hiro-footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .85rem;
  flex-wrap: wrap;

  font-size: .82rem;
}

.hiro-footer-legal a {
  color: rgba(255, 255, 255, .58);
  text-decoration: none;
  transition: color .22s ease;
}

.hiro-footer-legal a:hover {
  color: rgba(255, 255, 255, .9);
}

/* =============================
   FOOTER RESPONSIVE
================================ */
@media (max-width: 991.98px) {
  .hiro-footer-main {
    grid-template-columns: 1fr;
  }

  .hiro-footer-info {
    grid-template-columns: 1fr;
    grid-template-areas:
      "address"
      "hours"
      "contact";
  }

  .hiro-footer-block-contact {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .hiro-footer-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 767.98px) {
  .hiro-footer {
    padding: 4rem 0 1.5rem;
  }

  .hiro-footer-main {
    border-radius: 1.45rem;
    padding: 1.15rem;
  }

  .hiro-footer-brand {
    align-items: flex-start;
    gap: 1rem;
  }

  .hiro-footer-logo-link {
    width: 58px;
  }

  .hiro-footer-name {
    font-size: 1.25rem;
  }

  .hiro-footer-desc {
    font-size: .9rem;
  }

  .hiro-footer-block {
    padding: .95rem;
  }

  .hiro-footer-block-contact {
    padding: .95rem;
    gap: .8rem;
  }

  .hiro-footer-block-contact .hiro-footer-text {
    font-size: .95rem;
    line-height: 1.35;
  }

  .hiro-footer-reserve {
    min-width: auto;
    min-height: 2.55rem;
    padding: .76rem 1.05rem;
    font-size: .76rem;
  }

  .hiro-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
  }

  .hiro-footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 374.98px) {
  .hiro-footer-block-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .hiro-footer-actions {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hiro-footer-reserve,
  .hiro-footer-socials a {
    transition: none !important;
  }

  .hiro-footer-reserve:hover,
  .hiro-footer-socials a:hover {
    transform: none;
  }
}
