@import url("/src/design-system.css");

:root {
  color-scheme: light;
  font-family: var(--font-sans);
  --ink: var(--color-ink);
  --muted: var(--color-muted);
  --line: var(--color-hairline);
  --paper: var(--color-surface-soft);
  --white: var(--color-canvas);
  --blue: var(--color-jq-blue);
  --blue-dark: var(--color-jq-blue-deep);
  --teal: #0e8f94;
  --gold: var(--color-jq-gold);
  --shadow: 0 24px 70px rgba(18, 38, 63, 0.14);
}

/* User requested refinements: package layout, header distribution, gear HTML labels */
.home-header {
  justify-content: center;
  max-width: 860px;
}

.home-header .nav {
  flex: 0 1 auto;
  justify-content: center;
}

.service-people-selector {
  background: #ffffff;
  border: 1px solid rgba(23, 79, 145, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(9, 40, 79, 0.08);
  margin: 0 0 18px;
  padding: 12px 14px;
}

.service-people-selector > span {
  color: var(--brand-ink);
}

.service-people-selector button {
  background: #eef3f8;
  border-color: rgba(23, 79, 145, 0.08);
  color: rgba(13, 32, 56, 0.72);
}

.service-people-selector button.active {
  background: var(--brand-blue);
  color: #ffffff;
}

.service-note {
  color: #64748b;
  margin: 18px auto 0;
  max-width: 980px;
  text-align: center;
}

.service-note a {
  color: var(--brand-blue);
}

.gear-visual {
  background: linear-gradient(180deg, #d8ecff, #f7fbff);
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.gear-visual img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  width: 100%;
}

.gear-visual::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.gear-html-labels {
  inset: 0;
  max-width: none;
  pointer-events: none;
  position: absolute;
}

.gear-html-labels .gear-label {
  animation: gearLabelIn 0.7s ease both;
  animation-delay: var(--delay);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  padding: 0;
  position: absolute;
}

.gear-label i {
  background: #0b1730;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.72);
  display: block;
  height: 9px;
  position: absolute;
  width: 9px;
}

.gear-label b {
  background: #0b1730;
  display: block;
  height: 1px;
  position: absolute;
  transform-origin: left center;
}

.gear-label em {
  color: #0b1730;
  display: block;
  font-style: normal;
  line-height: 1.45;
  position: absolute;
  width: 185px;
}

.gear-label strong {
  color: #0b1730;
  display: block;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.gear-label.label-helmet {
  left: 56%;
  top: 13%;
}

.gear-label.label-helmet i {
  left: 0;
  top: 0;
}

.gear-label.label-helmet b {
  left: 7px;
  top: 4px;
  width: 190px;
}

.gear-label.label-helmet em {
  left: 210px;
  top: -28px;
}

.gear-label.label-jacket {
  left: 59%;
  top: 35%;
}

.gear-label.label-jacket i {
  left: 0;
  top: 0;
}

.gear-label.label-jacket b {
  left: 7px;
  top: 4px;
  width: 170px;
}

.gear-label.label-jacket em {
  left: 190px;
  top: -26px;
}

.gear-label.label-gloves {
  left: 27%;
  top: 50%;
}

.gear-label.label-gloves i {
  right: 0;
  top: 0;
}

.gear-label.label-gloves b {
  right: 7px;
  top: 4px;
  transform: rotate(180deg);
  width: 120px;
}

.gear-label.label-gloves em {
  right: 142px;
  text-align: left;
  top: -40px;
}

.gear-label.label-board {
  left: 47%;
  top: 80%;
}

.gear-label.label-board i {
  left: 0;
  top: 0;
}

.gear-label.label-board b {
  left: 7px;
  top: 4px;
  transform: rotate(-28deg);
  width: 150px;
}

.gear-label.label-board em {
  left: 158px;
  top: -58px;
}

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

@media (max-width: 720px) {
  .home-header {
    justify-content: center;
  }

  .home-header .nav {
    justify-content: center;
  }

  .service-people-selector {
    border-radius: 24px;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .gear-intro-card {
    grid-template-columns: 1fr;
  }

  .gear-visual {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .gear-visual img {
    transform: none;
  }

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

  .gear-label em {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(9, 40, 79, 0.1);
    font-size: 10px;
    padding: 7px 9px;
    width: 126px;
  }

  .gear-label b {
    width: 62px;
  }

  .gear-label.label-helmet {
    left: 54%;
    top: 12%;
  }

  .gear-label.label-helmet b {
    width: 64px;
  }

  .gear-label.label-helmet em {
    left: 76px;
    top: -18px;
  }

  .gear-label.label-jacket {
    left: 58%;
    top: 38%;
  }

  .gear-label.label-jacket b {
    width: 58px;
  }

  .gear-label.label-jacket em {
    left: 70px;
    top: -20px;
  }

  .gear-label.label-gloves {
    left: 34%;
    top: 50%;
  }

  .gear-label.label-gloves b {
    width: 58px;
  }

  .gear-label.label-gloves em {
    right: 70px;
    top: -22px;
  }

  .gear-label.label-board {
    left: 42%;
    top: 82%;
  }

  .gear-label.label-board b {
    width: 62px;
  }

  .gear-label.label-board em {
    left: 74px;
    top: -46px;
  }
}

/* Final v2 homepage overrides */
.home-hero {
  background:
    radial-gradient(circle at 50% 110%, rgba(111, 63, 242, 0.24), transparent 36%),
    linear-gradient(180deg, #11101b, #171526 62%, #11101b);
  display: grid;
  min-height: 100vh;
  padding: 132px clamp(18px, 5vw, 72px) 72px;
  position: relative;
}

.home-hero::before,
.home-hero::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.home-hero::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.62) 1px, transparent 1px);
  background-size: 86px 86px;
  inset: 0;
  opacity: 0.18;
}

.home-hero::after {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  height: 1080px;
  right: -160px;
  top: -320px;
  transform: rotate(-22deg);
  width: 720px;
}

.home-hero .hero-video-bg {
  border-radius: 34px;
  display: block;
  inset: 132px clamp(18px, 5vw, 72px) 72px;
  overflow: hidden;
  position: absolute;
}

.home-hero .hero-video-bg img {
  filter: saturate(0.76) contrast(1.08) brightness(0.44) blur(1px);
}

.home-hero .hero-video-bg::after {
  background:
    linear-gradient(90deg, rgba(10, 9, 18, 0.94) 0%, rgba(10, 9, 18, 0.84) 42%, rgba(10, 9, 18, 0.56) 100%),
    radial-gradient(circle at 70% 70%, rgba(128, 71, 255, 0.28), transparent 36%);
}

.home-hero .home-hero-content {
  align-items: center;
  background: rgba(11, 10, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  margin: 0 auto;
  max-width: 1320px;
  min-height: 650px;
  padding: 92px clamp(28px, 5vw, 70px);
  text-align: left;
  width: 100%;
  z-index: 1;
}

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

.hero-news-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 24px;
}

.hero-news-pill span {
  background: #20c997;
  color: #081520;
}

.home-hero-content h1 {
  color: #ffffff;
  font-size: clamp(54px, 5.8vw, 92px);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 28px;
  max-width: 760px;
  text-align: left;
}

.home-hero-content p:not(.hero-news-pill) {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.72;
  margin: 0;
  max-width: 650px;
  text-align: left;
}

.home-hero-actions {
  justify-content: flex-start;
  margin: 34px 0 0;
}

.home-hero .primary-button,
.home-hero .secondary-button {
  border-radius: 10px;
  font-size: 17px;
  min-height: 54px;
  padding: 0 28px;
}

.home-hero .primary-button {
  background: #ffffff;
  box-shadow: none;
  color: #11121d;
}

.home-hero .secondary-button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.hero-proof-strip,
.hero-mini-tabs {
  grid-column: 1 / -1;
}

.hero-proof-strip {
  gap: 16px;
  justify-content: flex-start;
  margin-top: 18px;
}

.hero-proof-strip span {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  gap: 9px;
  font-size: 15px;
  padding: 0;
}

.hero-mini-tabs {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: none;
  gap: 6px;
  justify-self: start;
  margin: 18px 0 0;
  padding: 7px;
}

.hero-mini-tabs span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  padding: 10px 16px;
}

.hero-mini-tabs span:first-child {
  background: #ffffff;
  color: #11121d;
}

.hero-visual-panel {
  align-items: center;
  aspect-ratio: 1;
  display: grid;
  justify-items: center;
  position: relative;
  z-index: 2;
}

.hero-glow-ring {
  background:
    radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.36), transparent 12%),
    conic-gradient(from 24deg, rgba(189, 139, 47, 0.8), rgba(23, 79, 145, 0.86), rgba(139, 92, 246, 0.95), rgba(189, 139, 47, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 38% 62% 45% 55%;
  box-shadow: 0 38px 90px rgba(129, 70, 255, 0.36);
  height: 68%;
  transform: rotate(-18deg);
  width: 68%;
}

.sprite-icon,
.sprite-mini {
  background-image: url("/pics/spirit.png");
  background-repeat: no-repeat;
  background-size: 600% 300%;
  display: block;
}

.sprite-icon {
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
  height: 82px;
  position: absolute;
  width: 82px;
  z-index: 3;
}

.sprite-mini {
  height: 22px;
  width: 22px;
}

.sprite-skier {
  background-position: 0 50%;
  left: 8%;
  top: 24%;
}

.sprite-coach {
  background-position: 20% 50%;
  right: 6%;
  top: 24%;
}

.sprite-bus {
  background-position: 40% 50%;
  bottom: 16%;
  left: 12%;
}

.sprite-crown {
  background-position: 0 100%;
  bottom: 10%;
  right: 16%;
}

.mini-coach {
  background-position: 20% 50%;
}

.mini-phone {
  background-position: 40% 100%;
}

.mini-bus {
  background-position: 40% 50%;
}

.service-people-selector {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  gap: 18px;
  margin: 0 0 22px;
  padding: 0;
}

.service-people-selector > span {
  color: #516176;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-people-selector button {
  background: #ffffff;
  border: 1px solid rgba(23, 79, 145, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(9, 40, 79, 0.06);
  color: #24364d;
  height: 46px;
}

.service-people-selector button.active {
  background: #11121d;
  border-color: #11121d;
  color: #ffffff;
}

.home-reviews .review-image-rail {
  animation: none;
  cursor: grab;
  display: flex;
  gap: 18px;
  margin: 0 calc(clamp(18px, 5vw, 72px) * -1);
  overflow-x: auto;
  padding: 6px clamp(18px, 5vw, 72px) 18px;
  scroll-behavior: auto;
  scrollbar-width: none;
  width: auto;
}

.home-reviews .review-image-rail::-webkit-scrollbar {
  display: none;
}

.home-reviews .review-image-rail:active {
  cursor: grabbing;
}

.home-reviews .review-image-rail figure {
  flex: 0 0 clamp(230px, 22vw, 330px);
  margin: 0;
}

.home-reviews .review-image-rail img {
  width: 100%;
}

@media (max-width: 720px) {
  .home-hero {
    background: #6d43f2;
    min-height: 100svh;
    padding: 92px 18px 38px;
  }

  .home-hero::before,
  .home-hero::after {
    display: none;
  }

  .home-hero .hero-video-bg {
    border-radius: 28px;
    inset: 132px 18px 70px;
    overflow: hidden;
  }

  .home-hero .hero-video-bg img {
    filter: saturate(0.82) contrast(1.08) brightness(0.52) blur(1.2px);
  }

  .home-hero .hero-video-bg::after {
    background:
      linear-gradient(180deg, rgba(7, 8, 15, 0.28), rgba(7, 8, 15, 0.9)),
      radial-gradient(circle at 60% 68%, rgba(128, 71, 255, 0.34), transparent 42%);
  }

  .home-hero .home-hero-content {
    background: rgba(9, 10, 17, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 auto;
    max-width: 360px;
    min-height: 720px;
    padding: 92px 26px 28px;
    position: relative;
    width: 100%;
  }

  .home-hero .home-hero-content::before {
    background: #ffffff;
    border-radius: 26px 26px 0 0;
    color: #353642;
    content: "5:13 PM       www.jinquan-ski.jp";
    font-size: 12px;
    font-weight: 800;
    height: 72px;
    left: 0;
    line-height: 72px;
    padding-left: 22px;
    position: absolute;
    right: 0;
    top: 0;
  }

  .hero-copy-block {
    margin-top: 12px;
  }

  .hero-news-pill {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 24px;
    padding: 7px 10px 7px 7px;
  }

  .hero-news-pill span {
    font-size: 10px;
    padding: 6px 8px;
  }

  .home-hero-content h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
    margin-bottom: 18px;
  }

  .home-hero-content p:not(.hero-news-pill) {
    font-size: 15px;
    line-height: 1.58;
  }

  .home-hero-actions {
    display: block;
    margin: 26px 0 0;
  }

  .home-hero .primary-button,
  .home-hero .secondary-button {
    border-radius: 999px;
    font-size: 15px;
    min-height: 50px;
    width: auto;
  }

  .home-hero .secondary-button {
    display: none;
  }

  .hero-visual-panel {
    height: 118px;
    margin: 28px auto 0;
    order: 4;
    width: 100%;
  }

  .hero-glow-ring {
    height: 110px;
    width: 110px;
  }

  .sprite-icon {
    height: 44px;
    width: 44px;
  }

  .sprite-skier {
    left: 18%;
    top: 18%;
  }

  .sprite-coach {
    right: 20%;
    top: 18%;
  }

  .sprite-bus {
    bottom: 12%;
    left: 24%;
  }

  .sprite-crown {
    bottom: 10%;
    right: 26%;
  }

  .hero-proof-strip {
    display: grid;
    gap: 10px;
    margin-top: 26px;
    order: 5;
  }

  .hero-proof-strip span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
  }

  .hero-mini-tabs {
    display: none;
  }

  .service-people-selector {
    gap: 10px;
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  .service-people-selector div {
    gap: 7px;
  }

  .service-people-selector button {
    border-radius: 12px;
    box-shadow: none;
    height: 38px;
  }

  .home-reviews .review-image-rail {
    gap: 12px;
    margin: 0 -14px;
    padding: 4px 14px 16px;
  }

  .home-reviews .review-image-rail figure {
    flex-basis: 72vw;
  }
}

/* Homepage v2 hero, reviews auto-scroll, people selector refresh */
.home-hero {
  background:
    radial-gradient(circle at 50% 110%, rgba(111, 63, 242, 0.24), transparent 36%),
    linear-gradient(180deg, #11101b, #171526 62%, #11101b);
  display: grid;
  min-height: 100vh;
  padding: 132px clamp(18px, 5vw, 72px) 72px;
}

.home-hero::before,
.home-hero::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.home-hero::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.62) 1px, transparent 1px);
  background-size: 86px 86px;
  inset: 0;
  opacity: 0.18;
}

.home-hero::after {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  height: 1080px;
  right: -160px;
  top: -320px;
  transform: rotate(-22deg);
  width: 720px;
}

.home-hero .hero-video-bg {
  border-radius: 34px;
  inset: 132px clamp(18px, 5vw, 72px) 72px;
  overflow: hidden;
}

.home-hero .hero-video-bg img {
  filter: saturate(0.76) contrast(1.08) brightness(0.44) blur(1px);
}

.home-hero .hero-video-bg::after {
  background:
    linear-gradient(90deg, rgba(10, 9, 18, 0.94) 0%, rgba(10, 9, 18, 0.84) 42%, rgba(10, 9, 18, 0.56) 100%),
    radial-gradient(circle at 70% 70%, rgba(128, 71, 255, 0.28), transparent 36%);
}

.home-hero .home-hero-content {
  align-items: center;
  background: rgba(11, 10, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  margin: 0 auto;
  max-width: 1320px;
  min-height: 650px;
  padding: 92px clamp(28px, 5vw, 70px);
  text-align: left;
  width: 100%;
}

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

.hero-news-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 24px;
}

.hero-news-pill span {
  background: #20c997;
  color: #081520;
}

.home-hero-content h1 {
  color: #ffffff;
  font-size: clamp(54px, 5.8vw, 92px);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 28px;
  max-width: 760px;
  text-align: left;
}

.home-hero-content p:not(.hero-news-pill) {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.72;
  margin: 0;
  max-width: 650px;
  text-align: left;
}

.home-hero-actions {
  justify-content: flex-start;
  margin: 34px 0 0;
}

.home-hero .primary-button,
.home-hero .secondary-button {
  border-radius: 10px;
  font-size: 17px;
  min-height: 54px;
  padding: 0 28px;
}

.home-hero .primary-button {
  background: #ffffff;
  box-shadow: none;
  color: #11121d;
}

.home-hero .secondary-button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.hero-proof-strip,
.hero-mini-tabs {
  grid-column: 1 / -1;
}

.hero-proof-strip {
  gap: 16px;
  justify-content: flex-start;
  margin-top: 18px;
}

.hero-proof-strip span {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  gap: 9px;
  font-size: 15px;
  padding: 0;
}

.hero-mini-tabs {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: none;
  gap: 6px;
  justify-self: start;
  margin: 18px 0 0;
  padding: 7px;
}

.hero-mini-tabs span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  padding: 10px 16px;
}

.hero-mini-tabs span:first-child {
  background: #ffffff;
  color: #11121d;
}

.hero-visual-panel {
  align-items: center;
  aspect-ratio: 1;
  display: grid;
  justify-items: center;
  position: relative;
  z-index: 2;
}

.hero-glow-ring {
  background:
    radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.36), transparent 12%),
    conic-gradient(from 24deg, rgba(189, 139, 47, 0.8), rgba(23, 79, 145, 0.86), rgba(139, 92, 246, 0.95), rgba(189, 139, 47, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 38% 62% 45% 55%;
  box-shadow: 0 38px 90px rgba(129, 70, 255, 0.36);
  filter: saturate(1.15);
  height: 68%;
  transform: rotate(-18deg);
  width: 68%;
}

.sprite-icon,
.sprite-mini {
  background-image: url("/pics/spirit.png");
  background-repeat: no-repeat;
  background-size: 600% 300%;
  display: block;
}

.sprite-icon {
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
  height: 82px;
  position: absolute;
  width: 82px;
  z-index: 3;
}

.sprite-mini {
  height: 22px;
  width: 22px;
}

.sprite-skier {
  background-position: 0 50%;
  left: 8%;
  top: 24%;
}

.sprite-coach {
  background-position: 20% 50%;
  right: 6%;
  top: 24%;
}

.sprite-bus {
  background-position: 40% 50%;
  bottom: 16%;
  left: 12%;
}

.sprite-crown {
  background-position: 0 100%;
  bottom: 10%;
  right: 16%;
}

.mini-coach {
  background-position: 20% 50%;
}

.mini-phone {
  background-position: 40% 100%;
}

.mini-bus {
  background-position: 40% 50%;
}

.service-people-selector {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  gap: 18px;
  margin: 0 0 22px;
  padding: 0;
}

.service-people-selector > span {
  color: #516176;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-people-selector button {
  background: #ffffff;
  border: 1px solid rgba(23, 79, 145, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(9, 40, 79, 0.06);
  color: #24364d;
  height: 46px;
}

.service-people-selector button.active {
  background: #11121d;
  border-color: #11121d;
  color: #ffffff;
}

.home-reviews .review-image-rail {
  animation: none;
  cursor: grab;
  display: flex;
  gap: 18px;
  margin: 0 calc(clamp(18px, 5vw, 72px) * -1);
  overflow-x: auto;
  padding: 6px clamp(18px, 5vw, 72px) 18px;
  scroll-behavior: auto;
  scrollbar-width: none;
  width: auto;
}

.home-reviews .review-image-rail::-webkit-scrollbar {
  display: none;
}

.home-reviews .review-image-rail:active {
  cursor: grabbing;
}

.home-reviews .review-image-rail figure {
  flex: 0 0 clamp(230px, 22vw, 330px);
  margin: 0;
}

.home-reviews .review-image-rail img {
  width: 100%;
}

@media (max-width: 720px) {
  .home-hero {
    background: #6d43f2;
    min-height: 100svh;
    padding: 92px 18px 38px;
  }

  .home-hero::before,
  .home-hero::after {
    display: none;
  }

  .home-hero .hero-video-bg {
    border-radius: 28px;
    bottom: 78px;
    inset: 132px 18px 70px;
    overflow: hidden;
  }

  .home-hero .hero-video-bg img {
    filter: saturate(0.82) contrast(1.08) brightness(0.52) blur(1.2px);
  }

  .home-hero .hero-video-bg::after {
    background:
      linear-gradient(180deg, rgba(7, 8, 15, 0.28), rgba(7, 8, 15, 0.9)),
      radial-gradient(circle at 60% 68%, rgba(128, 71, 255, 0.34), transparent 42%);
  }

  .home-hero .home-hero-content {
    background: rgba(9, 10, 17, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 auto;
    max-width: 360px;
    min-height: 720px;
    padding: 92px 26px 28px;
    position: relative;
    width: 100%;
  }

  .home-hero .home-hero-content::before {
    background: #ffffff;
    border-radius: 26px 26px 0 0;
    color: #353642;
    content: "5:13 PM       www.jinquan-ski.jp";
    font-size: 12px;
    font-weight: 800;
    height: 72px;
    left: 0;
    letter-spacing: 0;
    line-height: 72px;
    padding-left: 22px;
    position: absolute;
    right: 0;
    top: 0;
  }

  .hero-copy-block {
    margin-top: 12px;
  }

  .hero-news-pill {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 24px;
    padding: 7px 10px 7px 7px;
  }

  .hero-news-pill span {
    font-size: 10px;
    padding: 6px 8px;
  }

  .home-hero-content h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
    margin-bottom: 18px;
  }

  .home-hero-content p:not(.hero-news-pill) {
    font-size: 15px;
    line-height: 1.58;
  }

  .home-hero-actions {
    display: block;
    margin: 26px 0 0;
  }

  .home-hero .primary-button,
  .home-hero .secondary-button {
    border-radius: 999px;
    font-size: 15px;
    min-height: 50px;
    width: auto;
  }

  .home-hero .secondary-button {
    display: none;
  }

  .hero-visual-panel {
    height: 118px;
    margin: 28px auto 0;
    order: 4;
    width: 100%;
  }

  .hero-glow-ring {
    height: 110px;
    width: 110px;
  }

  .sprite-icon {
    height: 44px;
    width: 44px;
  }

  .sprite-skier {
    left: 18%;
    top: 18%;
  }

  .sprite-coach {
    right: 20%;
    top: 18%;
  }

  .sprite-bus {
    bottom: 12%;
    left: 24%;
  }

  .sprite-crown {
    bottom: 10%;
    right: 26%;
  }

  .hero-proof-strip {
    display: grid;
    gap: 10px;
    margin-top: 26px;
    order: 5;
  }

  .hero-proof-strip span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
  }

  .hero-mini-tabs {
    display: none;
  }

  .service-people-selector {
    gap: 10px;
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  .service-people-selector div {
    gap: 7px;
  }

  .service-people-selector button {
    border-radius: 12px;
    box-shadow: none;
    height: 38px;
  }

  .home-reviews .review-image-rail {
    gap: 12px;
    margin: 0 -14px;
    padding: 4px 14px 16px;
  }

  .home-reviews .review-image-rail figure {
    flex-basis: 72vw;
  }
}

/* Final override: centered nav and original-style animated gear callouts */
.home-header {
  justify-content: center;
  max-width: 860px;
}

.home-header .nav {
  flex: 0 1 auto;
  justify-content: center;
}

.gear-visual img {
  transform: none;
}

.gear-visual::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
}

.gear-html-labels {
  inset: 0;
  max-width: none;
  pointer-events: none;
  position: absolute;
}

.gear-html-labels .gear-label {
  animation: gearLabelIn 0.7s ease both;
  animation-delay: var(--delay);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  padding: 0;
  position: absolute;
}

.gear-label i {
  background: #0b1730;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.72);
  display: block;
  height: 9px;
  position: absolute;
  width: 9px;
}

.gear-label b {
  background: #0b1730;
  display: block;
  height: 1px;
  position: absolute;
  transform-origin: left center;
}

.gear-label em {
  color: #0b1730;
  display: block;
  font-style: normal;
  line-height: 1.45;
  position: absolute;
  width: 185px;
}

.gear-label strong {
  color: #0b1730;
  display: block;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.gear-label.label-helmet {
  left: 56%;
  top: 13%;
}

.gear-label.label-helmet i {
  left: 0;
  top: 0;
}

.gear-label.label-helmet b {
  left: 7px;
  top: 4px;
  width: 190px;
}

.gear-label.label-helmet em {
  left: 210px;
  top: -28px;
}

.gear-label.label-jacket {
  left: 59%;
  top: 35%;
}

.gear-label.label-jacket i {
  left: 0;
  top: 0;
}

.gear-label.label-jacket b {
  left: 7px;
  top: 4px;
  width: 170px;
}

.gear-label.label-jacket em {
  left: 190px;
  top: -26px;
}

.gear-label.label-gloves {
  left: 27%;
  top: 50%;
}

.gear-label.label-gloves i {
  right: 0;
  top: 0;
}

.gear-label.label-gloves b {
  right: 7px;
  top: 4px;
  transform: rotate(180deg);
  width: 120px;
}

.gear-label.label-gloves em {
  right: 142px;
  text-align: left;
  top: -40px;
}

.gear-label.label-board {
  left: 47%;
  top: 80%;
}

.gear-label.label-board i {
  left: 0;
  top: 0;
}

.gear-label.label-board b {
  left: 7px;
  top: 4px;
  transform: rotate(-28deg);
  width: 150px;
}

.gear-label.label-board em {
  left: 158px;
  top: -58px;
}

@media (max-width: 720px) {
  .home-header {
    justify-content: center;
  }

  .home-header .nav {
    justify-content: center;
  }

  .gear-visual img {
    transform: none;
  }

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

  .gear-label em {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(9, 40, 79, 0.1);
    font-size: 10px;
    padding: 7px 9px;
    width: 126px;
  }

  .gear-label b {
    width: 62px;
  }

  .gear-label.label-helmet {
    left: 54%;
    top: 12%;
  }

  .gear-label.label-helmet b {
    width: 64px;
  }

  .gear-label.label-helmet em {
    left: 76px;
    top: -18px;
  }

  .gear-label.label-jacket {
    left: 58%;
    top: 38%;
  }

  .gear-label.label-jacket b {
    width: 58px;
  }

  .gear-label.label-jacket em {
    left: 70px;
    top: -20px;
  }

  .gear-label.label-gloves {
    left: 34%;
    top: 50%;
  }

  .gear-label.label-gloves b {
    width: 58px;
  }

  .gear-label.label-gloves em {
    right: 70px;
    top: -22px;
  }

  .gear-label.label-board {
    left: 42%;
    top: 82%;
  }

  .gear-label.label-board b {
    width: 62px;
  }

  .gear-label.label-board em {
    left: 74px;
    top: -46px;
  }
}

.home-header {
  justify-content: center;
  max-width: 860px;
}

.home-header .nav {
  flex: 0 1 auto;
  justify-content: center;
}

.gear-visual img {
  transform: none;
}

.gear-visual::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
}

.gear-html-labels {
  inset: 0;
  max-width: none;
  pointer-events: none;
  position: absolute;
}

.gear-html-labels .gear-label {
  animation: gearLabelIn 0.7s ease both;
  animation-delay: var(--delay);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  padding: 0;
  position: absolute;
}

.gear-label i {
  background: #0b1730;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.72);
  display: block;
  height: 9px;
  position: absolute;
  width: 9px;
}

.gear-label b {
  background: #0b1730;
  display: block;
  height: 1px;
  position: absolute;
  transform-origin: left center;
}

.gear-label em {
  color: #0b1730;
  display: block;
  font-style: normal;
  line-height: 1.45;
  position: absolute;
  width: 185px;
}

.gear-label strong {
  color: #0b1730;
  display: block;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.gear-label.label-helmet {
  left: 56%;
  top: 13%;
}

.gear-label.label-helmet i {
  left: 0;
  top: 0;
}

.gear-label.label-helmet b {
  left: 7px;
  top: 4px;
  width: 190px;
}

.gear-label.label-helmet em {
  left: 210px;
  top: -28px;
}

.gear-label.label-jacket {
  left: 59%;
  top: 35%;
}

.gear-label.label-jacket i {
  left: 0;
  top: 0;
}

.gear-label.label-jacket b {
  left: 7px;
  top: 4px;
  width: 170px;
}

.gear-label.label-jacket em {
  left: 190px;
  top: -26px;
}

.gear-label.label-gloves {
  left: 27%;
  top: 50%;
}

.gear-label.label-gloves i {
  right: 0;
  top: 0;
}

.gear-label.label-gloves b {
  right: 7px;
  top: 4px;
  transform: rotate(180deg);
  width: 120px;
}

.gear-label.label-gloves em {
  right: 142px;
  text-align: left;
  top: -40px;
}

.gear-label.label-board {
  left: 47%;
  top: 80%;
}

.gear-label.label-board i {
  left: 0;
  top: 0;
}

.gear-label.label-board b {
  left: 7px;
  top: 4px;
  transform: rotate(-28deg);
  width: 150px;
}

.gear-label.label-board em {
  left: 158px;
  top: -58px;
}

@media (max-width: 720px) {
  .home-header {
    justify-content: center;
  }

  .home-header .nav {
    justify-content: flex-start;
  }

  .gear-visual img {
    transform: none;
  }

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

  .gear-label em {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(9, 40, 79, 0.1);
    font-size: 10px;
    padding: 7px 9px;
    width: 126px;
  }

  .gear-label b {
    width: 62px;
  }

  .gear-label.label-helmet {
    left: 54%;
    top: 12%;
  }

  .gear-label.label-helmet b {
    width: 64px;
  }

  .gear-label.label-helmet em {
    left: 76px;
    top: -18px;
  }

  .gear-label.label-jacket {
    left: 58%;
    top: 38%;
  }

  .gear-label.label-jacket b {
    width: 58px;
  }

  .gear-label.label-jacket em {
    left: 70px;
    top: -20px;
  }

  .gear-label.label-gloves {
    left: 34%;
    top: 50%;
  }

  .gear-label.label-gloves b {
    width: 58px;
  }

  .gear-label.label-gloves em {
    right: 70px;
    top: -22px;
  }

  .gear-label.label-board {
    left: 42%;
    top: 82%;
  }

  .gear-label.label-board b {
    width: 62px;
  }

  .gear-label.label-board em {
    left: 74px;
    top: -46px;
  }
}

/* Final override: centered nav and original-style animated gear callouts */
.home-header {
  justify-content: center;
  max-width: 860px;
}

.home-header .nav {
  flex: 0 1 auto;
  justify-content: center;
}

.gear-visual img {
  transform: none;
}

.gear-visual::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
}

.gear-html-labels {
  inset: 0;
  max-width: none;
  pointer-events: none;
  position: absolute;
}

.gear-html-labels .gear-label {
  animation: gearLabelIn 0.7s ease both;
  animation-delay: var(--delay);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  padding: 0;
  position: absolute;
}

.gear-label i {
  background: #0b1730;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.72);
  display: block;
  height: 9px;
  position: absolute;
  width: 9px;
}

.gear-label b {
  background: #0b1730;
  display: block;
  height: 1px;
  position: absolute;
  transform-origin: left center;
}

.gear-label em {
  color: #0b1730;
  display: block;
  font-style: normal;
  line-height: 1.45;
  position: absolute;
  width: 185px;
}

.gear-label strong {
  color: #0b1730;
  display: block;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.gear-label.label-helmet {
  left: 56%;
  top: 13%;
}

.gear-label.label-helmet i {
  left: 0;
  top: 0;
}

.gear-label.label-helmet b {
  left: 7px;
  top: 4px;
  width: 190px;
}

.gear-label.label-helmet em {
  left: 210px;
  top: -28px;
}

.gear-label.label-jacket {
  left: 59%;
  top: 35%;
}

.gear-label.label-jacket i {
  left: 0;
  top: 0;
}

.gear-label.label-jacket b {
  left: 7px;
  top: 4px;
  width: 170px;
}

.gear-label.label-jacket em {
  left: 190px;
  top: -26px;
}

.gear-label.label-gloves {
  left: 27%;
  top: 50%;
}

.gear-label.label-gloves i {
  right: 0;
  top: 0;
}

.gear-label.label-gloves b {
  right: 7px;
  top: 4px;
  transform: rotate(180deg);
  width: 120px;
}

.gear-label.label-gloves em {
  right: 142px;
  text-align: left;
  top: -40px;
}

.gear-label.label-board {
  left: 47%;
  top: 80%;
}

.gear-label.label-board i {
  left: 0;
  top: 0;
}

.gear-label.label-board b {
  left: 7px;
  top: 4px;
  transform: rotate(-28deg);
  width: 150px;
}

.gear-label.label-board em {
  left: 158px;
  top: -58px;
}

@media (max-width: 720px) {
  .home-header {
    justify-content: center;
  }

  .home-header .nav {
    justify-content: flex-start;
  }

  .gear-visual img {
    transform: none;
  }

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

  .gear-label em {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(9, 40, 79, 0.1);
    font-size: 10px;
    padding: 7px 9px;
    width: 126px;
  }

  .gear-label b {
    width: 62px;
  }

  .gear-label.label-helmet {
    left: 54%;
    top: 12%;
  }

  .gear-label.label-helmet b {
    width: 64px;
  }

  .gear-label.label-helmet em {
    left: 76px;
    top: -18px;
  }

  .gear-label.label-jacket {
    left: 58%;
    top: 38%;
  }

  .gear-label.label-jacket b {
    width: 58px;
  }

  .gear-label.label-jacket em {
    left: 70px;
    top: -20px;
  }

  .gear-label.label-gloves {
    left: 34%;
    top: 50%;
  }

  .gear-label.label-gloves b {
    width: 58px;
  }

  .gear-label.label-gloves em {
    right: 70px;
    top: -22px;
  }

  .gear-label.label-board {
    left: 42%;
    top: 82%;
  }

  .gear-label.label-board b {
    width: 62px;
  }

  .gear-label.label-board em {
    left: 74px;
    top: -46px;
  }
}

/* Centered header and callout-style gear labels */
.home-header {
  justify-content: center;
  max-width: 860px;
}

.home-header .nav {
  flex: 0 1 auto;
  justify-content: center;
}

.gear-visual img {
  transform: none;
}

.gear-visual::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
}

.gear-html-labels {
  inset: 0;
  max-width: none;
  pointer-events: none;
  position: absolute;
}

.gear-html-labels .gear-label {
  animation: gearLabelIn 0.7s ease both;
  animation-delay: var(--delay);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  padding: 0;
  position: absolute;
}

.gear-label i {
  background: #0b1730;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.72);
  display: block;
  height: 9px;
  position: absolute;
  width: 9px;
}

.gear-label b {
  background: #0b1730;
  display: block;
  height: 1px;
  position: absolute;
  transform-origin: left center;
}

.gear-label em {
  color: #0b1730;
  display: block;
  font-style: normal;
  line-height: 1.45;
  position: absolute;
  width: 185px;
}

.gear-label strong {
  color: #0b1730;
  display: block;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.gear-label.label-helmet {
  left: 56%;
  top: 13%;
}

.gear-label.label-helmet i {
  left: 0;
  top: 0;
}

.gear-label.label-helmet b {
  left: 7px;
  top: 4px;
  width: 190px;
}

.gear-label.label-helmet em {
  left: 210px;
  top: -28px;
}

.gear-label.label-jacket {
  left: 59%;
  top: 35%;
}

.gear-label.label-jacket i {
  left: 0;
  top: 0;
}

.gear-label.label-jacket b {
  left: 7px;
  top: 4px;
  width: 170px;
}

.gear-label.label-jacket em {
  left: 190px;
  top: -26px;
}

.gear-label.label-gloves {
  left: 27%;
  top: 50%;
}

.gear-label.label-gloves i {
  right: 0;
  top: 0;
}

.gear-label.label-gloves b {
  right: 7px;
  top: 4px;
  transform: rotate(180deg);
  width: 120px;
}

.gear-label.label-gloves em {
  right: 142px;
  text-align: left;
  top: -40px;
}

.gear-label.label-board {
  left: 47%;
  top: 80%;
}

.gear-label.label-board i {
  left: 0;
  top: 0;
}

.gear-label.label-board b {
  left: 7px;
  top: 4px;
  transform: rotate(-28deg);
  width: 150px;
}

.gear-label.label-board em {
  left: 158px;
  top: -58px;
}

@media (max-width: 720px) {
  .home-header {
    justify-content: center;
  }

  .home-header .nav {
    justify-content: flex-start;
  }

  .gear-visual img {
    transform: none;
  }

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

  .gear-label em {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(9, 40, 79, 0.1);
    font-size: 10px;
    padding: 7px 9px;
    width: 126px;
  }

  .gear-label b {
    width: 62px;
  }

  .gear-label.label-helmet {
    left: 54%;
    top: 12%;
  }

  .gear-label.label-helmet b {
    width: 64px;
  }

  .gear-label.label-helmet em {
    left: 76px;
    top: -18px;
  }

  .gear-label.label-jacket {
    left: 58%;
    top: 38%;
  }

  .gear-label.label-jacket b {
    width: 58px;
  }

  .gear-label.label-jacket em {
    left: 70px;
    top: -20px;
  }

  .gear-label.label-gloves {
    left: 34%;
    top: 50%;
  }

  .gear-label.label-gloves b {
    width: 58px;
  }

  .gear-label.label-gloves em {
    right: 70px;
    top: -22px;
  }

  .gear-label.label-board {
    left: 42%;
    top: 82%;
  }

  .gear-label.label-board b {
    width: 62px;
  }

  .gear-label.label-board em {
    left: 74px;
    top: -46px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(247, 250, 252, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 227, 238, 0.72);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  letter-spacing: 0;
  width: 40px;
}

.brand-mark.large {
  height: 64px;
  width: 64px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.nav a {
  color: #33445d;
  font-size: 14px;
  white-space: nowrap;
}

.header-cta,
.primary-button,
.secondary-button,
.text-button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
}

.header-cta,
.primary-button {
  background: var(--blue);
  color: var(--white);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--blue-dark);
}

.text-button {
  background: #e8f3ff;
  color: var(--blue-dark);
}

.text-button.subtle {
  background: #f3f6fa;
  color: #6a7788;
}

.hero {
  min-height: 94vh;
  overflow: hidden;
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 24, 45, 0.78), rgba(8, 24, 45, 0.34) 56%, rgba(8, 24, 45, 0.12)),
    linear-gradient(0deg, rgba(247, 250, 252, 0.96), transparent 28%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: 760px;
  padding: 180px clamp(22px, 6vw, 74px) 120px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ee7e4;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.98;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  margin-bottom: 18px;
}

h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

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

.hero-stats span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 14px;
}

.hero-stats strong {
  color: var(--white);
  display: block;
  font-size: 21px;
}

.section {
  padding: 82px clamp(18px, 5vw, 72px);
}

.section-heading {
  margin-bottom: 30px;
  max-width: 720px;
}

.resort-grid,
.package-grid,
.equipment-grid,
.rules-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

.resort-grid article,
.package-card,
.equipment-grid article,
.rules-grid article,
blockquote,
.quote-tool,
.channel-controls,
.comparison-panel,
.rental-form,
.contact-card,
.share-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 38, 63, 0.06);
}

.resort-grid article {
  padding: 24px;
}

.resort-grid span,
.tag {
  color: var(--gold);
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.team-band {
  align-items: center;
  background: #102942;
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.25fr 1fr;
}

.team-band p {
  color: rgba(255, 255, 255, 0.76);
}

.coach-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.coach-list span,
.price-notes span,
.brand-wall span {
  border-radius: 8px;
  font-weight: 800;
  padding: 14px 16px;
}

.coach-list span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.package-card {
  padding: 30px;
}

.package-card.featured {
  border-color: rgba(10, 102, 194, 0.35);
  box-shadow: var(--shadow);
}

.package-card.premium {
  background: #132f4a;
  color: var(--white);
}

.package-card.premium p,
.package-card.premium li {
  color: rgba(255, 255, 255, 0.78);
}

ul {
  margin: 20px 0 0;
  padding-left: 20px;
}

li {
  color: #41536b;
  line-height: 1.8;
}

.quote-section {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.82fr 1.18fr;
}

.price-notes,
.brand-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.price-notes span {
  background: #e9f7f7;
  color: #08767b;
}

.quote-tool,
.rental-form {
  padding: 26px;
}

label {
  color: #31445f;
  display: grid;
  font-size: 14px;
  font-weight: 750;
  gap: 8px;
}

input,
select {
  background: #fbfdff;
  border: 1px solid #cfdbe8;
  border-radius: 8px;
  color: var(--ink);
  min-height: 44px;
  padding: 0 12px;
  width: 100%;
}

.quote-tool {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fixed-price-tier {
  background: #f5f9fd;
  border: 1px solid #d8e4ef;
  border-radius: 8px;
  display: grid;
  gap: 6px;
  min-height: 44px;
  padding: 12px;
}

.fixed-price-tier span {
  color: #60738c;
  font-size: 13px;
  font-weight: 800;
}

.fixed-price-tier strong {
  color: var(--blue-dark);
  font-size: 18px;
}

.quick-packages {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  margin-bottom: 16px;
  padding: 0;
}

.quick-packages-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.quick-packages-heading span {
  color: var(--ink);
  font-weight: 850;
}

.quick-packages-heading em {
  background: #e9f7f7;
  border-radius: 999px;
  color: #08767b;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  padding: 7px 10px;
}

.skier-slider {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid #d8e4ef;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  padding: 16px;
  margin-bottom: 4px;
}

.skier-slider-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.skier-slider-heading span {
  color: var(--ink);
  font-weight: 850;
}

.skier-slider-heading strong {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 999px;
  color: var(--white);
  font-size: 15px;
  padding: 8px 12px;
}

.skier-slider input[type="range"] {
  accent-color: var(--blue);
  cursor: pointer;
  min-height: 34px;
  padding: 0;
}

.slider-ticks {
  color: #6c7d91;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  padding: 0 2px;
}

.quick-package-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-packages button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.92)),
    linear-gradient(135deg, rgba(10, 102, 194, 0.09), rgba(14, 143, 148, 0.08));
  border: 1px solid #d8e4ef;
  border-radius: 8px;
  color: #223a58;
  cursor: pointer;
  display: grid;
  gap: 10px;
  padding: 16px;
  position: relative;
  text-align: left;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease, background 0.16s ease;
}

.quick-packages button:hover,
.quick-packages button:focus-visible {
  border-color: rgba(10, 102, 194, 0.5);
  outline: none;
}

.quick-packages button.selected {
  background:
    linear-gradient(145deg, rgba(10, 102, 194, 0.96), rgba(14, 143, 148, 0.9)),
    #0a66c2;
  border-color: rgba(10, 102, 194, 0.75);
  box-shadow: 0 18px 40px rgba(10, 102, 194, 0.24);
  color: var(--white);
}

.package-icon {
  align-items: center;
  background: rgba(10, 102, 194, 0.11);
  border-radius: 8px;
  color: var(--blue-dark);
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.quick-packages button.selected .package-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.package-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.package-copy {
  display: grid;
  gap: 6px;
}

.quick-packages b {
  font-size: 16px;
  line-height: 1.35;
}

.quick-packages small {
  color: var(--muted);
  line-height: 1.55;
}

.quick-packages button.selected small {
  color: rgba(255, 255, 255, 0.82);
}

.package-badge {
  align-self: end;
  background: rgba(10, 102, 194, 0.09);
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 850;
  justify-self: start;
  padding: 7px 10px;
}

.quick-packages button.selected .package-badge {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.surcharge-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  grid-column: 1 / -1;
}

.surcharge-options label {
  align-items: center;
  display: flex;
  flex-direction: row;
  min-height: 32px;
}

fieldset {
  border: 1px solid #d4e0ec;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 18px;
}

legend {
  color: var(--ink);
  font-weight: 800;
  padding: 0 8px;
}

fieldset label {
  align-items: center;
  display: flex;
  flex-direction: row;
}

input[type="checkbox"] {
  height: 18px;
  min-height: auto;
  width: 18px;
}

.quote-result {
  align-items: end;
  background: linear-gradient(135deg, #0a66c2, #0e8f94);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  grid-column: 1 / -1;
  gap: 8px;
  padding: 24px;
}

.quote-result strong {
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1;
}

.quote-result small {
  color: rgba(255, 255, 255, 0.84);
}

.quote-result em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-weight: 750;
}

.quote-lines {
  display: grid;
  gap: 8px;
}

.quote-lines small {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.quote-lines b {
  color: var(--white);
  font-size: 14px;
}

.channel-calculator-section {
  background:
    radial-gradient(circle at top left, rgba(10, 102, 194, 0.07), transparent 32%),
    #f2f7fb;
}

#agency-calculator {
  background: #ffffff;
}

.standalone-main {
  padding-top: 68px;
}

.standalone-hero {
  background:
    linear-gradient(90deg, rgba(8, 24, 45, 0.88), rgba(8, 24, 45, 0.52)),
    url("/hero-teine.jpg") center / cover;
  color: var(--white);
  padding: 110px clamp(18px, 5vw, 72px) 70px;
}

.standalone-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 18px;
}

.standalone-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  max-width: 820px;
}

.channel-intro {
  max-width: 820px;
}

.channel-calculator {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  margin-top: 28px;
}

.channel-controls,
.comparison-panel {
  padding: 26px;
}

.compact-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.comparison-panel {
  align-self: start;
  border-color: rgba(10, 102, 194, 0.18);
  box-shadow: 0 24px 70px rgba(18, 38, 63, 0.12);
  position: sticky;
  top: 86px;
}

.comparison-summary {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.comparison-summary > span {
  background: #e9f7f7;
  border-radius: 8px;
  color: #08767b;
  font-weight: 850;
  padding: 10px 12px;
}

.comparison-summary strong {
  align-items: center;
  background: linear-gradient(180deg, #f8fbff, #eef6fc);
  border: 1px solid #d8e4ef;
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 14px;
}

.comparison-summary strong:first-child {
  background: linear-gradient(135deg, #0a66c2, #0e8f94);
  border-color: transparent;
  color: var(--white);
}

.comparison-summary b {
  color: var(--blue-dark);
  font-size: 24px;
  transition: transform 0.18s ease;
}

.comparison-summary strong:first-child b {
  color: var(--white);
}

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  border-collapse: collapse;
  min-width: 100%;
  width: 100%;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid #dce7f2;
  padding: 12px 10px;
  text-align: right;
  white-space: nowrap;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  color: #31445f;
  font-weight: 800;
  text-align: left;
}

.comparison-table th {
  background: #f2f7fb;
  color: #50627a;
  font-size: 13px;
}

.comparison-table td {
  color: #243851;
  font-weight: 750;
}

.comparison-table tbody tr {
  transition: background-color 0.16s ease;
}

.comparison-table tbody tr:hover {
  background: #f7fbff;
}

.brand-wall {
  margin-bottom: 22px;
}

.brand-wall span {
  background: var(--white);
  border: 1px solid var(--line);
  color: #203656;
  min-width: 122px;
  text-align: center;
}

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

.equipment-grid article {
  padding: 28px;
}

.hygiene-card {
  border-color: rgba(14, 143, 148, 0.38);
}

.rental-section {
  background: #edf5fb;
}

.rental-intro {
  max-width: 780px;
}

.form-row,
.guest-fields {
  display: grid;
  gap: 16px;
}

.form-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guest-toolbar,
.guest-card-header,
.form-actions {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.guest-toolbar {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 22px;
}

.guest-forms {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.guest-card {
  background: #fbfdff;
  border: 1px solid #d6e2ef;
  border-radius: 8px;
  padding: 18px;
}

.guest-card-header h3 {
  margin: 0;
}

.guest-fields {
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.guest-needs {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 16px;
}

.rental-price-preview {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 16px;
}

.rental-price-preview span {
  background: #eef7ff;
  border: 1px solid #d6e7f6;
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 12px;
}

.rental-price-preview small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.rental-price-preview strong {
  color: var(--blue-dark);
  font-size: 18px;
}

.rental-order-total {
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding: 16px 18px;
}

.rental-order-total span {
  font-weight: 850;
}

.rental-order-total strong {
  font-size: 24px;
}

.form-actions {
  justify-content: flex-start;
  margin: 24px 0 16px;
}

.order-output {
  background: #0d1b2a;
  border-radius: 8px;
  color: #d7f3ff;
  margin: 0;
  min-height: 150px;
  overflow: auto;
  padding: 18px;
  white-space: pre-wrap;
}

.rental-mobile-header {
  align-items: center;
  background: rgba(250, 252, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 228, 236, 0.72);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 12px 16px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 30;
}

.rental-mobile-header .brand {
  min-width: 0;
}

.rental-mobile-header .brand-mark {
  border-radius: 12px;
}

.rental-mobile-header a:last-child {
  color: #425466;
  font-size: 14px;
  font-weight: 800;
}

.rental-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(10, 102, 194, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  min-height: 100vh;
  padding: 24px 16px 128px;
}

.rental-page-hero {
  margin: 0 auto 24px;
  max-width: 680px;
}

.rental-page-hero h1 {
  font-size: clamp(34px, 10vw, 56px);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 8px 0 12px;
}

.rental-page-hero p:last-child {
  color: #596a7f;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}

.rental-mobile-section,
.rental-mobile-form {
  margin: 0 auto;
  max-width: 680px;
}

.rental-mobile-form {
  display: grid;
  gap: 16px;
}

.rental-panel,
.mobile-guest-card,
.mobile-order-output {
  background: rgba(255, 255, 255, 0.84);
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(31, 45, 61, 0.08);
}

.collapse-trigger,
.mobile-guest-summary {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 18px;
  text-align: left;
  width: 100%;
}

.collapse-trigger span,
.mobile-guest-summary span {
  display: grid;
  gap: 4px;
}

.collapse-trigger small,
.mobile-guest-summary small,
.rental-step-heading span,
.mobile-order-output span {
  color: #78889a;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collapse-trigger strong,
.mobile-guest-summary strong {
  font-size: 18px;
}

.collapse-trigger b,
.mobile-guest-summary b {
  background: #edf4f8;
  border-radius: 999px;
  color: #0f766e;
  font-size: 14px;
  padding: 8px 10px;
}

.mobile-field-stack {
  display: grid;
  gap: 12px;
  padding: 0 18px 18px;
}

.mobile-field-stack label {
  color: #425466;
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 7px;
}

.mobile-field-stack input {
  background: #f8fafc;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--ink);
  min-height: 52px;
  padding: 0 14px;
}

.mobile-field-stack input:focus {
  background: var(--white);
  border-color: rgba(10, 102, 194, 0.35);
  outline: none;
}

.rental-step-heading {
  display: grid;
  gap: 4px;
  padding: 8px 4px 0;
}

.rental-step-heading h2 {
  font-size: 24px;
  margin: 0;
}

.mobile-guest-list {
  display: grid;
  gap: 12px;
}

.mobile-guest-card {
  overflow: hidden;
}

.mobile-guest-card.open .mobile-guest-summary {
  border-bottom: 1px solid #edf1f5;
}

.mobile-guest-body {
  padding-top: 18px;
}

.segmented-control {
  background: #edf2f7;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 18px 18px;
  padding: 4px;
}

.segmented-control button {
  background: transparent;
  border: 0;
  border-radius: 11px;
  color: #536477;
  cursor: pointer;
  font-weight: 850;
  min-height: 44px;
}

.segmented-control button.active {
  background: var(--white);
  box-shadow: 0 8px 18px rgba(31, 45, 61, 0.08);
  color: var(--ink);
}

.rental-tag-groups {
  display: grid;
  gap: 16px;
  padding: 0 18px 18px;
}

.rental-tag-group h3 {
  color: #596a7f;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.rental-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rental-tag-list button {
  background: #f3f6f9;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #334155;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  min-height: 42px;
  padding: 0 13px;
}

.rental-tag-list button.selected {
  background: #e6f4f2;
  border-color: rgba(15, 118, 110, 0.22);
  color: #0f766e;
}

.mobile-guest-actions {
  align-items: center;
  border-top: 1px solid #edf1f5;
  display: flex;
  justify-content: space-between;
  padding: 12px 18px 18px;
}

.mobile-order-output {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.mobile-order-output > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.mobile-order-output pre {
  background: #101828;
  border-radius: 14px;
  color: #e6edf3;
  line-height: 1.55;
  margin: 0;
  max-height: 360px;
  overflow: auto;
  padding: 16px;
  white-space: pre-wrap;
}

.rental-sticky-bar {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 228, 236, 0.86);
  border-radius: 18px 18px 0 0;
  bottom: 0;
  box-shadow: 0 -18px 42px rgba(31, 45, 61, 0.14);
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 12px 12px max(12px, env(safe-area-inset-bottom));
  position: fixed;
  right: 0;
  z-index: 40;
}

.rental-sticky-bar div {
  display: grid;
  gap: 2px;
  justify-items: start;
}

.rental-sticky-bar small {
  color: #78889a;
  font-size: 11px;
  font-weight: 850;
}

.rental-sticky-bar strong {
  color: var(--ink);
  font-size: 20px;
}

.sticky-add-button {
  background: #eef3f7;
  border: 0;
  border-radius: 999px;
  color: #334155;
  cursor: pointer;
  font-weight: 900;
  min-height: 46px;
  padding: 0 14px;
}

.rental-sticky-bar .primary-button {
  border-radius: 999px;
  min-height: 46px;
  padding: 0 16px;
}

.rules-grid,
.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rules-grid article,
blockquote {
  padding: 26px;
}

.spots-section {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.72fr 1.28fr;
}

.map-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)),
    linear-gradient(155deg, #c8e8ff 0 32%, #ffffff 33% 42%, #83bfdb 43% 55%, #224761 56% 100%);
  border: 1px solid rgba(20, 33, 61, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 380px;
  overflow: hidden;
  position: relative;
}

.pin {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(20, 33, 61, 0.18);
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
  position: absolute;
}

.pin::before {
  background: var(--blue);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 8px;
  margin-right: 7px;
  width: 8px;
}

.pin-one {
  left: 10%;
  top: 18%;
}

.pin-two {
  right: 18%;
  top: 28%;
}

.pin-three {
  bottom: 22%;
  left: 34%;
}

.bay-label {
  bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 28px;
  font-weight: 900;
  position: absolute;
  right: 26px;
}

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

blockquote {
  margin: 0;
}

blockquote p {
  color: #263851;
  font-size: 18px;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 750;
}

.contact-section {
  align-items: stretch;
  background: #102942;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 0.62fr;
}

.contact-card,
.share-card {
  padding: 30px;
}

.contact-card {
  background: var(--white);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-links a {
  background: #edf6ff;
  border-radius: 8px;
  color: var(--blue-dark);
  font-weight: 800;
  padding: 12px 14px;
}

.share-card {
  background: linear-gradient(155deg, #ffffff, #dff7f8);
  display: grid;
  place-content: center;
  text-align: center;
}

.share-card h3 {
  font-size: 28px;
  margin: 18px 0 8px;
}

.share-card small {
  color: var(--muted);
  font-weight: 750;
}

.site-footer {
  background: #071625;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.site-footer a {
  color: #9ee7e4;
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    gap: 14px;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
    width: 100%;
  }

  .resort-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-section,
  .team-band,
  .spots-section,
  .contact-section,
  .channel-calculator {
    grid-template-columns: 1fr;
  }

  .comparison-panel {
    position: static;
  }

  .quick-package-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .quick-packages button {
    scroll-snap-align: start;
  }

  .guest-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guest-needs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .nav a {
    background: #edf6ff;
    border-radius: 8px;
    color: var(--blue-dark);
    font-weight: 800;
    padding: 9px 11px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding: 178px 18px 90px;
  }

  .section {
    padding: 58px 16px;
  }

  .resort-grid,
  .package-grid,
  .equipment-grid,
  .rules-grid,
  .testimonial-grid,
  .form-row,
  .compact-row,
  .quote-tool,
  .guest-fields,
  .guest-needs {
    grid-template-columns: 1fr;
  }

  .channel-controls,
  .comparison-panel,
  .quote-tool,
  .rental-form {
    padding: 18px;
  }

  .quick-package-grid {
    grid-template-columns: repeat(3, minmax(240px, 82vw));
    margin-left: -2px;
    margin-right: -2px;
  }

  .quick-packages button {
    gap: 6px;
    min-height: 104px;
    padding: 14px 14px 12px;
  }

  .quick-packages b {
    font-size: 15px;
    line-height: 1.24;
  }

  .quick-packages small {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 12px;
    line-height: 1.38;
    overflow: hidden;
  }

  .surcharge-options {
    flex-direction: column;
  }

  fieldset {
    grid-template-columns: 1fr;
  }

  fieldset label,
  .surcharge-options label {
    min-height: 44px;
  }

  input[type="checkbox"] {
    height: 22px;
    width: 22px;
  }

  .comparison-panel {
    border-radius: 8px 8px 0 0;
    bottom: 0;
    margin: 20px -16px -58px;
    position: sticky;
    z-index: 8;
  }

  .comparison-summary {
    grid-template-columns: 1fr;
  }

  .comparison-table-wrap {
    max-height: 320px;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .text-button {
    width: 100%;
  }

  .map-card {
    min-height: 330px;
  }

.bay-label {
    font-size: 20px;
    left: 18px;
    right: auto;
  }
}

/* Refined public homepage */
.home-header {
  background: rgba(252, 253, 252, 0.9);
  border-bottom-color: rgba(224, 228, 232, 0.72);
}

.home-header .header-cta,
.home-hero .primary-button,
.journey-card a,
.mobile-contact-bar .primary {
  background: #13243a;
  color: var(--white);
}

.home-header .nav a {
  color: #344054;
  font-weight: 750;
}

.home-hero {
  background: #f5f7f8;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  min-height: 100vh;
  padding: 112px clamp(18px, 4vw, 64px) 48px;
  position: relative;
}

.home-hero-media {
  border-radius: 18px;
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.home-hero-media::after {
  background: linear-gradient(180deg, transparent 58%, rgba(10, 18, 28, 0.34));
  content: "";
  inset: 0;
  position: absolute;
}

.home-hero-media img,
.journey-card img,
.home-gallery img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home-hero-content {
  align-self: end;
  max-width: 720px;
  padding: 40px 0 84px;
}

.home-hero-content h1 {
  color: #101828;
  font-size: clamp(44px, 6.4vw, 84px);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 24px;
}

.home-hero-content p {
  color: #475467;
  font-size: 18px;
  line-height: 1.72;
  max-width: 620px;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-hero .secondary-button {
  background: var(--white);
  border: 1px solid #d8dee6;
  color: #13243a;
}

.home-hero-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(224, 228, 232, 0.9);
  border-radius: 16px;
  bottom: 48px;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.1);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: clamp(18px, 4vw, 64px);
  max-width: 620px;
  overflow: hidden;
  position: absolute;
  right: 45%;
}

.home-hero-panel span {
  background: rgba(255, 255, 255, 0.72);
  color: #667085;
  display: grid;
  font-size: 13px;
  gap: 4px;
  padding: 18px;
}

.home-hero-panel strong {
  color: #101828;
  font-size: 20px;
}

.home-section {
  padding: 96px clamp(18px, 5vw, 72px);
}

.home-section-kicker {
  color: #9a6b2f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.home-section-heading {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.46fr);
  margin-bottom: 34px;
}

.home-section h2 {
  color: #101828;
  font-size: clamp(32px, 4.6vw, 58px);
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.home-section-heading p,
.home-about p,
.home-trust p {
  color: #667085;
  font-size: 16px;
  line-height: 1.72;
}

.home-service-grid,
.trust-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-service-grid article,
.trust-list article {
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 16px;
  padding: 24px;
}

.home-service-grid h3,
.trust-list strong {
  color: #101828;
  display: block;
  font-size: 18px;
  margin-bottom: 12px;
}

.home-service-grid p,
.trust-list p {
  margin: 0;
}

.home-trust {
  background: #101828;
  color: var(--white);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
}

.home-trust h2 {
  color: var(--white);
}

.home-trust .home-section-kicker {
  color: #d6b37d;
}

.trust-list article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.trust-list strong {
  color: var(--white);
}

.trust-list p {
  color: rgba(255, 255, 255, 0.7);
}

.journey-rail,
.review-image-rail {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.journey-card {
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 18px;
  overflow: hidden;
}

.journey-card img {
  aspect-ratio: 4 / 3;
  display: block;
}

.journey-card div {
  padding: 18px;
}

.journey-card span {
  color: #9a6b2f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-card h3 {
  color: #101828;
  font-size: 21px;
  margin: 8px 0;
}

.journey-card p {
  color: #667085;
  line-height: 1.55;
  margin-bottom: 12px;
}

.journey-card ul {
  margin: 0 0 16px;
  padding-left: 18px;
}

.journey-card li {
  color: #475467;
  line-height: 1.55;
}

.journey-card a {
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  min-height: 40px;
  padding: 0 16px;
  align-items: center;
}

.home-gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  padding: 0 clamp(18px, 5vw, 72px) 96px;
}

.home-gallery img {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
}

.home-gallery img:first-child {
  aspect-ratio: 1.45 / 1;
  grid-row: span 2;
}

.home-about {
  align-items: start;
  background: #f0f3f6;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
}

.home-about p {
  margin: 0;
}

.review-image-rail figure {
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 18px;
  margin: 0;
  overflow: hidden;
  padding: 10px;
}

.review-image-rail img {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.home-reviews {
  background: #fff;
}

.mobile-contact-bar {
  display: none;
}

.home-header + main .quote-section {
  background: #f7f8fa;
}

/* Visitors.now-inspired homepage direction */
.home-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 0;
}

.home-header .brand-mark {
  background: #f1efff;
  color: #6857f0;
}

.home-header .header-cta,
.home-hero .primary-button,
.journey-card a,
.mobile-contact-bar .primary {
  background: #7467f0;
}

.home-hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(116, 103, 240, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: auto;
  padding: 120px clamp(18px, 4vw, 64px) 72px;
  text-align: center;
}

.home-hero-content {
  max-width: 860px;
  padding: 0;
}

.home-announcement {
  align-items: center;
  background: rgba(116, 103, 240, 0.08);
  border-radius: 999px;
  color: #6157d8;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 22px;
  min-height: 34px;
  padding: 0 12px 0 6px;
}

.home-announcement span {
  background: #7467f0;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
}

.home-hero .eyebrow,
.home-section-kicker {
  color: #7467f0;
}

.home-hero-content h1 {
  color: #111111;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.02;
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
  text-align: center;
}

.home-hero-content p {
  color: #666666;
  font-size: 18px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
  text-align: center;
}

.home-hero-actions {
  justify-content: center;
}

.home-hero-actions .primary-button,
.home-hero-actions .secondary-button {
  border-radius: 999px;
  min-height: 46px;
  padding: 0 22px;
}

.home-hero .secondary-button {
  background: rgba(0, 0, 0, 0.04);
  border-color: transparent;
  color: #333333;
}

.home-product-frame {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid #ececec;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(16, 24, 40, 0.08);
  max-width: 1120px;
  overflow: hidden;
  padding: 14px;
  width: 100%;
}

.home-product-tabs {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 6px 6px 14px;
}

.home-product-tabs span {
  border-radius: 999px;
  color: #777777;
  font-size: 13px;
  font-weight: 850;
  padding: 8px 12px;
}

.home-product-tabs .active {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
}

.home-product-grid {
  background: #ffffff;
  border-radius: 18px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) 280px;
  padding: 12px;
  text-align: left;
}

.home-product-main {
  border-radius: 14px;
  height: 520px;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.home-product-main img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home-product-main > div {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  bottom: 0;
  color: #ffffff;
  display: grid;
  gap: 8px;
  left: 0;
  padding: 72px 28px 28px;
  position: absolute;
  right: 0;
}

.home-product-main span,
.home-product-main small {
  color: rgba(255, 255, 255, 0.76);
}

.home-product-main strong {
  font-size: 28px;
}

.home-product-side {
  display: grid;
  gap: 12px;
}

.home-product-side span {
  background: #fafafa;
  border: 1px solid #eeeeee;
  border-radius: 14px;
  color: #666666;
  display: grid;
  gap: 6px;
  padding: 20px;
}

.home-product-side b {
  color: #111111;
  font-size: 26px;
}

.home-section {
  background: #ffffff;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
}

.home-section-heading {
  align-items: center;
  grid-template-columns: 1fr;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
  text-align: center;
}

.home-section h2 {
  color: #111111;
}

.home-service-grid article,
.journey-card,
.review-image-rail figure {
  background: #ffffff;
  border-color: #eeeeee;
  box-shadow: none;
}

.home-service-grid article {
  min-height: 220px;
}

.home-trust {
  background: #111111;
}

.home-trust .home-section-kicker {
  color: #b9b2ff;
}

.trust-list article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.journey-card,
.review-image-rail figure {
  border-radius: 20px;
}

.home-about {
  background: #fafafa;
}

.home-gallery {
  background: #ffffff;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
}

.home-gallery img {
  border-radius: 20px;
}

/* Four-part homepage for ski service */
.home-hero {
  background: #0c1118;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
  place-items: center;
  position: relative;
}

.hero-video-bg {
  inset: 0;
  position: absolute;
}

.hero-video-bg img {
  animation: heroDrift 18s ease-in-out infinite alternate;
  filter: saturate(0.92) contrast(1.08);
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  width: 100%;
}

.hero-video-bg::after {
  background:
    linear-gradient(180deg, rgba(7, 13, 22, 0.2), rgba(7, 13, 22, 0.78)),
    linear-gradient(90deg, rgba(7, 13, 22, 0.78), rgba(7, 13, 22, 0.26));
  content: "";
  inset: 0;
  position: absolute;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-2%, -1%, 0); }
}

.home-hero .home-hero-content {
  color: var(--white);
  margin: 0 auto;
  max-width: 980px;
  padding: 140px 18px 96px;
  position: relative;
  text-align: left;
  width: min(100%, 1180px);
  z-index: 1;
}

.home-hero .eyebrow {
  color: #d9c08a;
}

.home-hero-content h1 {
  color: var(--white);
  margin-left: 0;
  max-width: 900px;
  text-align: left;
}

.home-hero-content p {
  color: rgba(255, 255, 255, 0.82);
  margin-left: 0;
  max-width: 620px;
  text-align: left;
}

.home-hero-actions {
  justify-content: flex-start;
}

.home-hero .secondary-button {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof-strip span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 850;
  padding: 10px 13px;
}

.service-pricing-card {
  background:
    linear-gradient(145deg, rgba(16, 24, 40, 0.96), rgba(17, 38, 56, 0.96)),
    #101828;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(16, 24, 40, 0.2);
  color: var(--white);
  overflow: hidden;
  padding: 18px;
}

.people-selector {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.people-selector > span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
}

.people-selector div {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.people-selector button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-weight: 900;
  height: 42px;
  min-width: 42px;
}

.people-selector button.active {
  background: #ffffff;
  color: #101828;
}

.package-table-wrap {
  overflow-x: auto;
}

.package-compare-table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 780px;
  width: 100%;
}

.package-compare-table th,
.package-compare-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  text-align: center;
}

.package-compare-table th:first-child,
.package-compare-table td:first-child {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 900;
  position: sticky;
  left: 0;
  text-align: left;
  z-index: 2;
}

.package-compare-table th:first-child {
  background: #101828;
}

.package-compare-table td:first-child {
  background: #122238;
}

.package-compare-table th:not(:first-child) {
  background: rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.package-compare-table th strong,
.package-compare-table th small,
.package-compare-table th b {
  display: block;
}

.package-compare-table th strong {
  color: var(--white);
  font-size: 18px;
}

.package-compare-table th small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  margin: 8px 0;
}

.package-compare-table th b {
  color: #d9c08a;
  font-size: 24px;
}

.check-mark {
  align-items: center;
  background: rgba(43, 211, 145, 0.14);
  border: 1px solid rgba(43, 211, 145, 0.3);
  border-radius: 999px;
  color: #7df0b8;
  display: inline-flex;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.package-compare-table em {
  background: rgba(217, 192, 138, 0.14);
  border-radius: 999px;
  color: #ead6a7;
  display: inline-flex;
  font-style: normal;
  font-weight: 900;
  padding: 7px 11px;
}

.dash {
  color: rgba(255, 255, 255, 0.28);
}

.service-note {
  color: rgba(255, 255, 255, 0.74);
  margin: 18px 0 0;
}

.service-note a {
  color: #d9c08a;
  font-weight: 900;
  margin-left: 8px;
}

.company-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.gear-intro-card,
.coach-intro-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 24px;
  overflow: hidden;
}

.gear-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.gear-intro-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gear-intro-card div,
.coach-intro-card {
  padding: 28px;
}

.gear-intro-card span,
.coach-intro-card span {
  color: #7467f0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gear-intro-card h3,
.coach-intro-card h3 {
  color: #101828;
  font-size: 28px;
  margin: 12px 0;
}

.brand-line {
  color: #475467;
  font-weight: 850;
}

.coach-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.coach-points b {
  background: #f4f4ff;
  border-radius: 999px;
  color: #5d52d6;
  font-size: 13px;
  padding: 9px 12px;
}

.home-reviews .review-image-rail {
  animation: reviewDrift 38s linear infinite;
  width: max-content;
}

.home-reviews {
  overflow: hidden;
}

@keyframes reviewDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-22%); }
}

@media (max-width: 980px) {
  .home-hero,
  .home-section-heading,
  .home-trust,
  .home-about {
    grid-template-columns: 1fr;
  }

  .home-service-grid,
  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-panel {
    left: 18px;
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .home-product-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .home-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .home-header .brand strong {
    font-size: 15px;
  }

  .home-header .nav {
    display: none;
  }

  .home-hero {
    gap: 14px;
    min-height: auto;
    padding: 86px 14px 42px;
  }

  .home-hero-content {
    padding: 22px 0 0;
  }

  .home-announcement {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .home-hero-content h1 {
    font-size: clamp(36px, 10.4vw, 50px);
    margin-bottom: 16px;
  }

  .home-hero-content p {
    font-size: 15px;
    line-height: 1.58;
  }

  .home-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }

  .home-hero-actions .primary-button,
  .home-hero-actions .secondary-button {
    border-radius: 12px;
    min-height: 50px;
    padding: 0 12px;
    width: 100%;
  }

  .home-product-frame {
    border-radius: 20px;
    margin-top: 6px;
    padding: 8px;
  }

  .home-product-tabs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .home-product-grid {
    padding: 8px;
  }

  .home-product-main {
    height: 300px;
    min-height: 280px;
  }

  .home-product-main > div {
    padding: 68px 18px 18px;
  }

  .home-product-main strong {
    font-size: 22px;
  }

  .home-product-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-product-side span {
    padding: 12px;
  }

  .home-product-side b {
    font-size: 16px;
  }

  .home-hero .home-hero-content {
    padding: 112px 14px 88px;
  }

  .home-hero-content h1,
  .home-hero-content p {
    text-align: left;
  }

  .hero-proof-strip {
    gap: 8px;
  }

  .service-pricing-card {
    border-radius: 18px;
    margin-left: -2px;
    margin-right: -2px;
    padding: 12px;
  }

  .people-selector {
    align-items: flex-start;
    flex-direction: column;
  }

  .people-selector div {
    margin: 0 -4px;
    padding: 0 4px 4px;
    width: calc(100% + 8px);
  }

  .package-compare-table {
    min-width: 680px;
  }

  .package-compare-table th,
  .package-compare-table td {
    padding: 14px 12px;
  }

  .package-compare-table th strong {
    font-size: 15px;
  }

  .package-compare-table th b {
    font-size: 20px;
  }

  .company-grid,
  .gear-intro-card {
    grid-template-columns: 1fr;
  }

  .gear-intro-card img {
    aspect-ratio: 4 / 3;
  }

  .gear-intro-card div,
  .coach-intro-card {
    padding: 20px;
  }

  .gear-intro-card h3,
  .coach-intro-card h3 {
    font-size: 24px;
  }

  .home-reviews .review-image-rail {
    animation: none;
  }

  .home-section {
    padding: 58px 14px;
  }

  .home-section-heading {
    gap: 12px;
    margin-bottom: 22px;
  }

  .home-section h2 {
    font-size: 32px;
  }

  .home-service-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .home-service-grid article,
  .trust-list article {
    border-radius: 14px;
    padding: 20px;
  }

  .home-trust {
    padding-bottom: 64px;
  }

  .journey-rail,
  .review-image-rail {
    display: flex;
    margin: 0 -14px;
    overflow-x: auto;
    padding: 0 14px 8px;
    scroll-snap-type: x proximity;
  }

  .journey-card,
  .review-image-rail figure {
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }

  .journey-card img {
    aspect-ratio: 4 / 3.4;
  }

  .home-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 14px 58px;
  }

  .home-gallery img,
  .home-gallery img:first-child {
    aspect-ratio: 4 / 5;
    flex: 0 0 72vw;
  }

  .home-about {
    gap: 18px;
  }

  .home-reviews .home-section-heading p {
    font-size: 14px;
  }

  .home-header + main .quote-section {
    padding-bottom: 74px;
  }

  .mobile-contact-bar {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid #e6ebf0;
    bottom: 0;
    box-shadow: 0 -14px 34px rgba(16, 24, 40, 0.12);
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    left: 0;
    padding: 10px 10px max(10px, env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 50;
  }

  .mobile-contact-bar a {
    align-items: center;
    border-radius: 12px;
    color: #344054;
    display: flex;
    font-size: 12px;
    font-weight: 850;
    justify-content: center;
    min-height: 42px;
  }
}

/* Logo-led homepage refresh */
:root {
  --brand-blue: var(--color-jq-blue);
  --brand-blue-deep: var(--color-jq-blue-deep);
  --brand-gold: var(--color-jq-gold);
  --brand-gold-soft: #f5e6c7;
  --brand-ice: var(--color-jq-ice);
  --brand-ink: var(--color-ink);
}

.home-header {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(9, 40, 79, 0.14);
  left: 50%;
  max-width: min(1120px, calc(100% - 40px));
  padding: 10px 12px 10px 14px;
  position: absolute;
  right: auto;
  top: 18px;
  transform: translateX(-50%);
  width: 100%;
}

.brand-logo {
  align-items: center;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(23, 79, 145, 0.08);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  overflow: hidden;
  width: 44px;
}

.brand-logo img {
  height: 54px;
  object-fit: contain;
  width: 54px;
}

.home-header .brand strong {
  color: var(--brand-ink);
  font-size: 15px;
}

.home-header .brand small,
.home-header .nav a {
  color: rgba(13, 32, 56, 0.68);
}

.home-header .nav {
  background: rgba(244, 248, 251, 0.74);
  border: 1px solid rgba(23, 79, 145, 0.08);
  border-radius: 999px;
  gap: 4px;
  padding: 5px;
}

.home-header .nav a {
  border-radius: 999px;
  font-weight: 750;
  padding: 9px 12px;
}

.home-header .nav a:hover {
  background: #ffffff;
  color: var(--brand-blue);
}

.home-header .header-cta,
.home-hero .primary-button {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-deep));
  box-shadow: 0 12px 28px rgba(23, 79, 145, 0.22);
}

.home-hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(198, 146, 50, 0.18), transparent 28%),
    linear-gradient(180deg, #061a31 0%, #09284f 56%, #f4f8fb 100%);
  min-height: 92vh;
}

.hero-video-bg {
  border-radius: 0 0 42px 42px;
  inset: 0 0 7vh;
  overflow: hidden;
}

.hero-video-bg img {
  filter: saturate(0.86) contrast(1.04) brightness(0.8);
}

.hero-video-bg::after {
  background:
    linear-gradient(180deg, rgba(6, 26, 49, 0.08), rgba(6, 26, 49, 0.78) 72%, rgba(244, 248, 251, 0.98)),
    linear-gradient(90deg, rgba(6, 26, 49, 0.86), rgba(6, 26, 49, 0.36) 58%, rgba(6, 26, 49, 0.7));
}

.home-hero .home-hero-content {
  max-width: 1180px;
  padding: 182px 28px 128px;
}

.home-hero .eyebrow,
.home-section-kicker,
.gear-intro-card span,
.coach-intro-card span {
  color: var(--brand-gold);
}

.home-hero-content h1 {
  font-size: clamp(44px, 6.6vw, 86px);
  letter-spacing: 0;
  max-width: 820px;
}

.home-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 720px;
}

.home-hero .secondary-button {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.hero-proof-strip span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 230, 199, 0.22);
}

.home-section {
  background: var(--brand-ice);
}

.service-pricing-card {
  background:
    linear-gradient(145deg, rgba(9, 40, 79, 0.98), rgba(13, 32, 56, 0.98)),
    var(--brand-blue-deep);
  border-color: rgba(245, 230, 199, 0.18);
  box-shadow: 0 32px 90px rgba(9, 40, 79, 0.22);
}

.people-selector button.active {
  background: var(--brand-gold);
  color: #1b2637;
}

.package-compare-table th b,
.service-note a,
.package-compare-table em {
  color: var(--brand-gold-soft);
}

.package-compare-table em {
  background: rgba(198, 146, 50, 0.18);
}

.check-mark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 230, 199, 0.3);
  color: #ffffff;
}

.gear-intro-card,
.coach-intro-card,
.contact-card,
.share-card {
  border-color: rgba(23, 79, 145, 0.1);
  box-shadow: 0 20px 60px rgba(9, 40, 79, 0.08);
}

.coach-points b,
.text-button {
  background: rgba(198, 146, 50, 0.13);
  color: #8a641c;
}

.contact-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(198, 146, 50, 0.16), transparent 26%),
    linear-gradient(180deg, var(--brand-ice), #ffffff);
}

.share-card {
  align-self: stretch;
  padding: 22px;
}

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

.qr-card {
  background: #ffffff;
  border: 1px solid rgba(23, 79, 145, 0.1);
  border-radius: 18px;
  margin: 0;
  padding: 12px;
}

.qr-card img {
  aspect-ratio: 1;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.qr-card figcaption {
  display: grid;
  gap: 3px;
  padding-top: 10px;
}

.qr-card strong {
  color: var(--brand-ink);
  font-size: 14px;
}

.qr-card span {
  color: #667085;
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .home-header {
    border-radius: 22px;
    display: grid;
    gap: 10px;
    max-width: calc(100% - 24px);
    padding: 10px;
    top: 10px;
  }

  .home-header .brand {
    min-width: 0;
  }

  .home-header .nav {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px;
    width: 100%;
  }

  .home-header .nav a {
    flex: 0 0 auto;
    font-size: 12px;
    padding: 8px 10px;
  }

  .home-header .header-cta {
    display: none;
  }

  .brand-logo {
    height: 40px;
    width: 40px;
  }

  .home-hero {
    min-height: 92svh;
    padding: 0;
  }

  .hero-video-bg {
    border-radius: 0 0 28px 28px;
    inset: 0 0 5vh;
  }

  .home-hero .home-hero-content {
    padding: 188px 18px 78px;
  }

  .home-hero-content h1 {
    font-size: clamp(37px, 11vw, 48px);
    line-height: 1.04;
  }

  .home-hero-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .home-hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-proof-strip span {
    font-size: 12px;
    padding: 9px 11px;
  }

  .service-pricing-card {
    border-radius: 22px;
    padding: 14px;
  }

  .people-selector {
    gap: 12px;
  }

  .people-selector div {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    overflow: visible;
    padding: 0;
    width: 100%;
  }

  .people-selector button {
    height: 44px;
    min-width: 0;
    width: 100%;
  }

  .package-table-wrap {
    overflow: visible;
  }

  .package-compare-table,
  .package-compare-table thead,
  .package-compare-table tbody,
  .package-compare-table tr {
    display: block;
    min-width: 0;
    width: 100%;
  }

  .package-compare-table thead tr {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .package-compare-table thead th:first-child {
    display: none;
  }

  .package-compare-table thead th:not(:first-child) {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: grid;
    gap: 3px;
    padding: 14px 16px;
    text-align: left;
  }

  .package-compare-table th strong,
  .package-compare-table th small,
  .package-compare-table th b {
    display: block;
  }

  .package-compare-table th b {
    font-size: 22px;
  }

  .package-compare-table tbody {
    display: grid;
    gap: 10px;
    margin-top: 12px;
  }

  .package-compare-table tbody tr {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
  }

  .package-compare-table td:first-child {
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    grid-column: 1 / -1;
    position: static;
    text-align: left;
  }

  .package-compare-table td:not(:first-child) {
    align-items: center;
    border-bottom: 0;
    display: flex;
    justify-content: center;
    min-height: 54px;
    padding: 12px 8px;
  }

  .package-compare-table td:nth-child(2)::before,
  .package-compare-table td:nth-child(3)::before,
  .package-compare-table td:nth-child(4)::before {
    color: rgba(255, 255, 255, 0.42);
    display: block;
    font-size: 10px;
    font-weight: 850;
    margin-bottom: 5px;
    position: absolute;
    transform: translateY(-21px);
  }

  .package-compare-table td:nth-child(2)::before {
    content: "新手";
  }

  .package-compare-table td:nth-child(3)::before {
    content: "自由行";
  }

  .package-compare-table td:nth-child(4)::before {
    content: "高端";
  }

  .check-mark {
    height: 28px;
    width: 28px;
  }

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

/* Visitors-style clean homepage direction */
body {
  background: #fbfbfc;
}

.home-header {
  background: #11121d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(17, 18, 29, 0.16);
  gap: 22px;
  justify-content: center;
  left: 50%;
  max-width: 860px;
  padding: 12px 18px;
  position: absolute;
  top: 42px;
  transform: translateX(-50%);
  width: auto;
}

.home-header .brand {
  gap: 0;
  min-width: 0;
}

.home-header .brand > span:last-child {
  display: none;
}

.brand-logo {
  background: #f6f6fa;
  border-radius: 999px;
  box-shadow: none;
  height: 48px;
  width: 48px;
}

.brand-logo img {
  height: 58px;
  width: 58px;
}

.home-header .nav {
  background: transparent;
  border: 0;
  border-radius: 0;
  gap: 26px;
  padding: 0;
}

.home-header .nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  font-weight: 650;
  padding: 0;
}

.home-header .nav a:hover {
  background: transparent;
  color: #ffffff;
}

.home-header .header-cta {
  background: linear-gradient(135deg, #d4a24f, #b9822d);
  border-radius: 999px;
  box-shadow: none;
  color: #ffffff;
  font-size: 18px;
  min-height: 48px;
  padding: 0 22px;
}

.home-hero {
  background:
    radial-gradient(circle at 10% 96%, rgba(198, 146, 50, 0.18), transparent 20%),
    radial-gradient(circle at 92% 98%, rgba(23, 79, 145, 0.16), transparent 24%),
    #fbfbfc;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video-bg {
  display: none;
}

.home-hero .home-hero-content {
  color: #11121d;
  margin: 0 auto;
  max-width: 1120px;
  padding: 210px 24px 72px;
  text-align: center;
}

.hero-news-pill {
  align-items: center;
  background: #edf3fb;
  border-radius: 999px;
  color: #2b68b8;
  display: inline-flex;
  font-size: 19px;
  font-weight: 760;
  gap: 12px;
  line-height: 1;
  margin: 0 auto 34px;
  padding: 10px 18px 10px 10px;
}

.hero-news-pill span {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-gold));
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  padding: 8px 12px;
}

.home-hero-content h1 {
  color: #141520;
  font-size: clamp(58px, 8.4vw, 118px);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 auto 30px;
  max-width: 1000px;
  text-align: center;
}

.home-hero-content p:not(.hero-news-pill) {
  color: #696a70;
  font-size: clamp(19px, 2.3vw, 30px);
  font-weight: 520;
  line-height: 1.38;
  margin: 0 auto;
  max-width: 860px;
  text-align: center;
}

.home-hero-actions {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin: 34px 0 54px;
}

.home-hero .primary-button,
.home-hero .secondary-button {
  border-radius: 999px;
  font-size: 20px;
  min-height: 64px;
  padding: 0 34px;
}

.home-hero .primary-button {
  background: linear-gradient(135deg, var(--brand-blue), #2d67b5);
  box-shadow: 0 18px 40px rgba(23, 79, 145, 0.18);
}

.home-hero .secondary-button {
  background: #f1f1f2;
  border: 0;
  color: #5d5e63;
}

.hero-proof-strip {
  justify-content: center;
  margin-top: 0;
}

.hero-proof-strip span {
  background: transparent;
  border: 0;
  color: rgba(20, 21, 32, 0.38);
  font-size: 18px;
  padding: 8px 12px;
}

.hero-mini-tabs {
  align-items: center;
  background: #ffffff;
  border-radius: 999px 999px 0 0;
  box-shadow: 0 -10px 40px rgba(17, 18, 29, 0.08);
  display: inline-flex;
  gap: 10px;
  margin: 94px auto 0;
  padding: 18px 28px 16px;
}

.hero-mini-tabs span {
  border-radius: 999px;
  color: #9a9a9f;
  font-size: 18px;
  font-weight: 780;
  padding: 14px 24px;
}

.hero-mini-tabs span:first-child {
  background: #f0f0f1;
  color: #171824;
}

.qr-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.qr-card {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 14px;
}

.qr-card img {
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.qr-card figcaption {
  align-content: start;
  min-height: 58px;
  text-align: center;
}

@media (max-width: 720px) {
  .home-header {
    align-items: center;
    border-radius: 28px;
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: flex-start;
    max-width: calc(100% - 24px);
    padding: 10px;
    top: 14px;
    width: calc(100% - 24px);
  }

  .home-header .brand {
    flex: 0 0 auto;
  }

  .brand-logo {
    height: 42px;
    width: 42px;
  }

  .brand-logo img {
    height: 52px;
    width: 52px;
  }

  .home-header .nav {
    flex: 1 1 0;
    flex-wrap: nowrap;
    gap: 8px;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    width: 0;
  }

  .home-header .nav a {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    flex: 0 0 auto;
    font-size: 13px;
    line-height: 1;
    padding: 10px 12px;
    white-space: nowrap;
  }

  .home-header .header-cta {
    display: none;
  }

  .home-hero {
    min-height: 92svh;
  }

  .home-hero .home-hero-content {
    padding: 164px 18px 48px;
  }

  .hero-news-pill {
    font-size: 14px;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px 13px 8px 8px;
  }

  .hero-news-pill span {
    font-size: 12px;
    padding: 7px 10px;
  }

  .home-hero-content h1 {
    font-size: clamp(48px, 15vw, 64px);
    line-height: 1;
    margin-bottom: 24px;
  }

  .home-hero-content p:not(.hero-news-pill) {
    font-size: 18px;
    line-height: 1.52;
  }

  .home-hero-actions {
    display: grid;
    gap: 12px;
    margin: 30px 0 36px;
  }

  .home-hero .primary-button,
  .home-hero .secondary-button {
    font-size: 17px;
    min-height: 56px;
    width: 100%;
  }

  .hero-proof-strip {
    gap: 6px 10px;
  }

  .hero-proof-strip span {
    font-size: 13px;
  }

  .hero-mini-tabs {
    border-radius: 28px 28px 0 0;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 44px;
    padding: 12px;
    width: 100%;
  }

  .hero-mini-tabs span {
    font-size: 13px;
    padding: 12px 8px;
    text-align: center;
  }

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

  .qr-card img {
    margin: 0 auto;
    max-width: 260px;
  }
}

/* Final homepage adjustment: image hero + no-scroll package table */
.home-hero {
  background: #f7f8fb;
  position: relative;
}

.home-hero .hero-video-bg {
  border-radius: 0;
  display: block;
  inset: 0;
  opacity: 1;
  position: absolute;
}

.home-hero .hero-video-bg img {
  animation: heroDrift 20s ease-in-out infinite alternate;
  filter: saturate(0.82) contrast(1.03) brightness(1.03);
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  width: 100%;
}

.home-hero .hero-video-bg::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.82) 58%, rgba(251, 251, 252, 0.98)),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.2), transparent 34%);
  content: "";
  inset: 0;
  position: absolute;
}

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

.people-selector {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(0, 1fr);
}

.people-selector div {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  overflow: visible;
}

.people-selector button {
  min-width: 0;
  width: 100%;
}

.package-table-wrap {
  overflow: visible;
}

.package-compare-table {
  min-width: 0;
  table-layout: fixed;
  width: 100%;
}

.package-compare-table th,
.package-compare-table td {
  padding: 16px 12px;
}

.package-compare-table th:first-child,
.package-compare-table td:first-child {
  width: 22%;
}

.package-compare-table th:not(:first-child),
.package-compare-table td:not(:first-child) {
  width: 26%;
}

@media (max-width: 720px) {
  .home-hero {
    min-height: 92svh;
  }

  .home-hero .hero-video-bg img {
    object-position: 50% center;
  }

  .home-hero .hero-video-bg::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.84) 56%, rgba(251, 251, 252, 0.98)),
      radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.2), transparent 36%);
  }

  .people-selector {
    grid-template-columns: 1fr;
  }

  .people-selector div {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    margin: 0;
    overflow: visible;
    padding: 0;
    width: 100%;
  }

  .people-selector button {
    border-radius: 999px;
    font-size: 13px;
    height: 34px;
    min-width: 0;
    padding: 0;
    width: 100%;
  }

  .package-table-wrap {
    overflow: visible;
  }

  .package-compare-table {
    border-collapse: separate;
    border-spacing: 0;
    display: table;
    min-width: 0;
    table-layout: fixed;
    width: 100%;
  }

  .package-compare-table thead {
    display: table-header-group;
  }

  .package-compare-table tbody {
    display: table-row-group;
    margin-top: 0;
  }

  .package-compare-table tr,
  .package-compare-table thead tr,
  .package-compare-table tbody tr {
    background: transparent;
    border: 0;
    border-radius: 0;
    display: table-row;
    grid-template-columns: none;
    overflow: visible;
  }

  .package-compare-table thead th:first-child,
  .package-compare-table th,
  .package-compare-table td,
  .package-compare-table td:first-child,
  .package-compare-table td:not(:first-child),
  .package-compare-table thead th:not(:first-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: table-cell;
    min-height: 0;
    padding: 10px 4px;
    position: static;
    text-align: center;
    vertical-align: middle;
  }

  .package-compare-table th:first-child,
  .package-compare-table td:first-child {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.2;
    text-align: left;
    width: 22%;
  }

  .package-compare-table th:not(:first-child),
  .package-compare-table td:not(:first-child) {
    width: 26%;
  }

  .package-compare-table thead th:not(:first-child) {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0;
  }

  .package-compare-table th strong {
    font-size: 12px;
    line-height: 1.2;
  }

  .package-compare-table th small {
    font-size: 10px;
    line-height: 1.25;
    margin: 5px 0;
  }

  .package-compare-table th b {
    font-size: 15px;
    line-height: 1.1;
  }

  .package-compare-table td:nth-child(2)::before,
  .package-compare-table td:nth-child(3)::before,
  .package-compare-table td:nth-child(4)::before {
    content: none;
  }

  .check-mark {
    font-size: 13px;
    height: 24px;
    width: 24px;
  }

  .package-compare-table em {
    border-radius: 999px;
    font-size: 10px;
    line-height: 1.15;
    padding: 6px 5px;
  }
}

/* User requested refinements: package layout, header distribution, gear HTML labels */
.home-header {
  justify-content: center;
  max-width: 860px;
}

.home-header .nav {
  flex: 0 1 auto;
  justify-content: center;
}

.service-people-selector {
  background: #ffffff;
  border: 1px solid rgba(23, 79, 145, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(9, 40, 79, 0.08);
  margin: 0 0 18px;
  padding: 12px 14px;
}

.service-people-selector > span {
  color: var(--brand-ink);
}

.service-people-selector button {
  background: #eef3f8;
  border-color: rgba(23, 79, 145, 0.08);
  color: rgba(13, 32, 56, 0.72);
}

.service-people-selector button.active {
  background: var(--brand-blue);
  color: #ffffff;
}

.service-note {
  color: #64748b;
  margin: 18px auto 0;
  max-width: 980px;
  text-align: center;
}

.service-note a {
  color: var(--brand-blue);
}

.gear-visual {
  background: linear-gradient(180deg, #d8ecff, #f7fbff);
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.gear-visual img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  width: 100%;
}

.gear-visual::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.gear-html-labels {
  inset: 0;
  max-width: none;
  pointer-events: none;
  position: absolute;
}

.gear-html-labels .gear-label {
  animation: gearLabelIn 0.7s ease both;
  animation-delay: var(--delay);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  padding: 0;
  position: absolute;
}

.gear-label i {
  background: #0b1730;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.72);
  display: block;
  height: 9px;
  position: absolute;
  width: 9px;
}

.gear-label b {
  background: #0b1730;
  display: block;
  height: 1px;
  position: absolute;
  transform-origin: left center;
}

.gear-label em {
  color: #0b1730;
  display: block;
  font-style: normal;
  line-height: 1.45;
  position: absolute;
  width: 185px;
}

.gear-label strong {
  color: #0b1730;
  display: block;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.gear-label.label-helmet {
  left: 56%;
  top: 13%;
}

.gear-label.label-helmet i {
  left: 0;
  top: 0;
}

.gear-label.label-helmet b {
  left: 7px;
  top: 4px;
  width: 190px;
}

.gear-label.label-helmet em {
  left: 210px;
  top: -28px;
}

.gear-label.label-jacket {
  left: 59%;
  top: 35%;
}

.gear-label.label-jacket i {
  left: 0;
  top: 0;
}

.gear-label.label-jacket b {
  left: 7px;
  top: 4px;
  width: 170px;
}

.gear-label.label-jacket em {
  left: 190px;
  top: -26px;
}

.gear-label.label-gloves {
  left: 27%;
  top: 50%;
}

.gear-label.label-gloves i {
  right: 0;
  top: 0;
}

.gear-label.label-gloves b {
  right: 7px;
  top: 4px;
  transform: rotate(180deg);
  width: 120px;
}

.gear-label.label-gloves em {
  right: 142px;
  text-align: left;
  top: -40px;
}

.gear-label.label-board {
  left: 47%;
  top: 80%;
}

.gear-label.label-board i {
  left: 0;
  top: 0;
}

.gear-label.label-board b {
  left: 7px;
  top: 4px;
  transform: rotate(-28deg);
  width: 150px;
}

.gear-label.label-board em {
  left: 158px;
  top: -58px;
}

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

@media (max-width: 720px) {
  .home-header {
    justify-content: center;
  }

  .home-header .nav {
    justify-content: center;
  }

  .service-people-selector {
    border-radius: 24px;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .gear-intro-card {
    grid-template-columns: 1fr;
  }

  .gear-visual {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .gear-visual img {
    transform: none;
  }

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

  .gear-label em {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(9, 40, 79, 0.1);
    font-size: 10px;
    padding: 7px 9px;
    width: 126px;
  }

  .gear-label b {
    width: 62px;
  }

  .gear-label.label-helmet {
    left: 54%;
    top: 12%;
  }

  .gear-label.label-helmet b {
    width: 64px;
  }

  .gear-label.label-helmet em {
    left: 76px;
    top: -18px;
  }

  .gear-label.label-jacket {
    left: 58%;
    top: 38%;
  }

  .gear-label.label-jacket b {
    width: 58px;
  }

  .gear-label.label-jacket em {
    left: 70px;
    top: -20px;
  }

  .gear-label.label-gloves {
    left: 34%;
    top: 50%;
  }

  .gear-label.label-gloves b {
    width: 58px;
  }

  .gear-label.label-gloves em {
    right: 70px;
    top: -22px;
  }

  .gear-label.label-board {
    left: 42%;
    top: 82%;
  }

  .gear-label.label-board b {
    width: 62px;
  }

  .gear-label.label-board em {
    left: 74px;
    top: -46px;
  }
}

/* Final v2 homepage overrides */
.home-hero {
  background:
    radial-gradient(circle at 50% 110%, rgba(111, 63, 242, 0.24), transparent 36%),
    linear-gradient(180deg, #11101b, #171526 62%, #11101b);
  display: grid;
  min-height: 100vh;
  padding: 132px clamp(18px, 5vw, 72px) 72px;
  position: relative;
}

.home-hero::before,
.home-hero::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.home-hero::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.62) 1px, transparent 1px);
  background-size: 86px 86px;
  inset: 0;
  opacity: 0.18;
}

.home-hero::after {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  height: 1080px;
  right: -160px;
  top: -320px;
  transform: rotate(-22deg);
  width: 720px;
}

.home-hero .hero-video-bg {
  border-radius: 34px;
  display: block;
  inset: 132px clamp(18px, 5vw, 72px) 72px;
  overflow: hidden;
  position: absolute;
}

.home-hero .hero-video-bg img {
  filter: saturate(0.76) contrast(1.08) brightness(0.44) blur(1px);
}

.home-hero .hero-video-bg::after {
  background:
    linear-gradient(90deg, rgba(10, 9, 18, 0.94) 0%, rgba(10, 9, 18, 0.84) 42%, rgba(10, 9, 18, 0.56) 100%),
    radial-gradient(circle at 70% 70%, rgba(128, 71, 255, 0.28), transparent 36%);
}

.home-hero .home-hero-content {
  align-items: center;
  background: rgba(11, 10, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  margin: 0 auto;
  max-width: 1320px;
  min-height: 650px;
  padding: 92px clamp(28px, 5vw, 70px);
  text-align: left;
  width: 100%;
  z-index: 1;
}

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

.hero-news-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 24px;
}

.hero-news-pill span {
  background: #20c997;
  color: #081520;
}

.home-hero-content h1 {
  color: #ffffff;
  font-size: clamp(54px, 5.8vw, 92px);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 28px;
  max-width: 760px;
  text-align: left;
}

.home-hero-content p:not(.hero-news-pill) {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.72;
  margin: 0;
  max-width: 650px;
  text-align: left;
}

.home-hero-actions {
  justify-content: flex-start;
  margin: 34px 0 0;
}

.home-hero .primary-button,
.home-hero .secondary-button {
  border-radius: 10px;
  font-size: 17px;
  min-height: 54px;
  padding: 0 28px;
}

.home-hero .primary-button {
  background: #ffffff;
  box-shadow: none;
  color: #11121d;
}

.home-hero .secondary-button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.hero-proof-strip,
.hero-mini-tabs {
  grid-column: 1 / -1;
}

.hero-proof-strip {
  gap: 16px;
  justify-content: flex-start;
  margin-top: 18px;
}

.hero-proof-strip span {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  gap: 9px;
  font-size: 15px;
  padding: 0;
}

.hero-mini-tabs {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: none;
  gap: 6px;
  justify-self: start;
  margin: 18px 0 0;
  padding: 7px;
}

.hero-mini-tabs span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  padding: 10px 16px;
}

.hero-mini-tabs span:first-child {
  background: #ffffff;
  color: #11121d;
}

.hero-visual-panel {
  align-items: center;
  aspect-ratio: 1;
  display: grid;
  justify-items: center;
  position: relative;
  z-index: 2;
}

.hero-glow-ring {
  background:
    radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.36), transparent 12%),
    conic-gradient(from 24deg, rgba(189, 139, 47, 0.8), rgba(23, 79, 145, 0.86), rgba(139, 92, 246, 0.95), rgba(189, 139, 47, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 38% 62% 45% 55%;
  box-shadow: 0 38px 90px rgba(129, 70, 255, 0.36);
  height: 68%;
  transform: rotate(-18deg);
  width: 68%;
}

.sprite-icon,
.sprite-mini {
  background-image: url("/pics/spirit.png");
  background-repeat: no-repeat;
  background-size: 600% 300%;
  display: block;
}

.sprite-icon {
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
  height: 82px;
  position: absolute;
  width: 82px;
  z-index: 3;
}

.sprite-mini {
  height: 22px;
  width: 22px;
}

.sprite-skier {
  background-position: 0 50%;
  left: 8%;
  top: 24%;
}

.sprite-coach {
  background-position: 20% 50%;
  right: 6%;
  top: 24%;
}

.sprite-bus {
  background-position: 40% 50%;
  bottom: 16%;
  left: 12%;
}

.sprite-crown {
  background-position: 0 100%;
  bottom: 10%;
  right: 16%;
}

.mini-coach {
  background-position: 20% 50%;
}

.mini-phone {
  background-position: 40% 100%;
}

.mini-bus {
  background-position: 40% 50%;
}

.service-people-selector {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  gap: 18px;
  margin: 0 0 22px;
  padding: 0;
}

.service-people-selector > span {
  color: #516176;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-people-selector button {
  background: #ffffff;
  border: 1px solid rgba(23, 79, 145, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(9, 40, 79, 0.06);
  color: #24364d;
  height: 46px;
}

.service-people-selector button.active {
  background: #11121d;
  border-color: #11121d;
  color: #ffffff;
}

.home-reviews .review-image-rail {
  animation: none;
  cursor: grab;
  display: flex;
  gap: 18px;
  margin: 0 calc(clamp(18px, 5vw, 72px) * -1);
  overflow-x: auto;
  padding: 6px clamp(18px, 5vw, 72px) 18px;
  scroll-behavior: auto;
  scrollbar-width: none;
  width: auto;
}

.home-reviews .review-image-rail::-webkit-scrollbar {
  display: none;
}

.home-reviews .review-image-rail:active {
  cursor: grabbing;
}

.home-reviews .review-image-rail figure {
  flex: 0 0 clamp(230px, 22vw, 330px);
  margin: 0;
}

.home-reviews .review-image-rail img {
  width: 100%;
}

@media (max-width: 720px) {
  .home-hero {
    background: #6d43f2;
    min-height: 100svh;
    padding: 92px 18px 38px;
  }

  .home-hero::before,
  .home-hero::after {
    display: none;
  }

  .home-hero .hero-video-bg {
    border-radius: 28px;
    inset: 132px 18px 70px;
    overflow: hidden;
  }

  .home-hero .hero-video-bg img {
    filter: saturate(0.82) contrast(1.08) brightness(0.52) blur(1.2px);
  }

  .home-hero .hero-video-bg::after {
    background:
      linear-gradient(180deg, rgba(7, 8, 15, 0.28), rgba(7, 8, 15, 0.9)),
      radial-gradient(circle at 60% 68%, rgba(128, 71, 255, 0.34), transparent 42%);
  }

  .home-hero .home-hero-content {
    background: rgba(9, 10, 17, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 auto;
    max-width: 360px;
    min-height: 720px;
    padding: 92px 26px 28px;
    position: relative;
    width: 100%;
  }

  .home-hero .home-hero-content::before {
    background: #ffffff;
    border-radius: 26px 26px 0 0;
    color: #353642;
    content: "5:13 PM       www.jinquan-ski.jp";
    font-size: 12px;
    font-weight: 800;
    height: 72px;
    left: 0;
    line-height: 72px;
    padding-left: 22px;
    position: absolute;
    right: 0;
    top: 0;
  }

  .hero-copy-block {
    margin-top: 12px;
  }

  .hero-news-pill {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 24px;
    padding: 7px 10px 7px 7px;
  }

  .hero-news-pill span {
    font-size: 10px;
    padding: 6px 8px;
  }

  .home-hero-content h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
    margin-bottom: 18px;
  }

  .home-hero-content p:not(.hero-news-pill) {
    font-size: 15px;
    line-height: 1.58;
  }

  .home-hero-actions {
    display: block;
    margin: 26px 0 0;
  }

  .home-hero .primary-button,
  .home-hero .secondary-button {
    border-radius: 999px;
    font-size: 15px;
    min-height: 50px;
    width: auto;
  }

  .home-hero .secondary-button {
    display: none;
  }

  .hero-visual-panel {
    height: 118px;
    margin: 28px auto 0;
    order: 4;
    width: 100%;
  }

  .hero-glow-ring {
    height: 110px;
    width: 110px;
  }

  .sprite-icon {
    height: 44px;
    width: 44px;
  }

  .sprite-skier {
    left: 18%;
    top: 18%;
  }

  .sprite-coach {
    right: 20%;
    top: 18%;
  }

  .sprite-bus {
    bottom: 12%;
    left: 24%;
  }

  .sprite-crown {
    bottom: 10%;
    right: 26%;
  }

  .hero-proof-strip {
    display: grid;
    gap: 10px;
    margin-top: 26px;
    order: 5;
  }

  .hero-proof-strip span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
  }

  .hero-mini-tabs {
    display: none;
  }

  .service-people-selector {
    gap: 10px;
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  .service-people-selector div {
    gap: 7px;
  }

  .service-people-selector button {
    border-radius: 12px;
    box-shadow: none;
    height: 38px;
  }

  .home-reviews .review-image-rail {
    gap: 12px;
    margin: 0 -14px;
    padding: 4px 14px 16px;
  }

  .home-reviews .review-image-rail figure {
    flex-basis: 72vw;
  }
}

@media (min-width: 721px) {
  .gear-html-labels .gear-label {
    z-index: 2;
  }

  .gear-label i {
    height: 8px;
    width: 8px;
  }

  .gear-label b {
    background: rgba(11, 23, 48, 0.72);
  }

  .gear-label em {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(9, 40, 79, 0.12);
    color: rgba(11, 23, 48, 0.78);
    font-size: 12px;
    line-height: 1.42;
    padding: 8px 10px;
    width: 126px;
  }

  .gear-label strong {
    color: #0b1730;
    font-size: 17px;
    margin-bottom: 2px;
  }

  .gear-label.label-helmet {
    left: 55%;
    top: 15%;
  }

  .gear-label.label-helmet b {
    width: 42px;
  }

  .gear-label.label-helmet em {
    left: 52px;
    top: -24px;
  }

  .gear-label.label-jacket {
    left: 59%;
    top: 38%;
  }

  .gear-label.label-jacket b {
    width: 40px;
  }

  .gear-label.label-jacket em {
    left: 50px;
    top: -22px;
  }

  .gear-label.label-gloves {
    left: 28%;
    top: 52%;
  }

  .gear-label.label-gloves i {
    left: 0;
    right: auto;
  }

  .gear-label.label-gloves b {
    left: 7px;
    right: auto;
    transform: none;
    width: 46px;
  }

  .gear-label.label-gloves em {
    left: 58px;
    right: auto;
    text-align: left;
    top: -28px;
    width: 132px;
  }

  .gear-label.label-board {
    left: 48%;
    top: 80%;
  }

  .gear-label.label-board b {
    transform: rotate(-18deg);
    width: 42px;
  }

  .gear-label.label-board em {
    left: 48px;
    top: -54px;
    width: 136px;
  }
}

/* KINSEN homepage ski-school illustration system */
:root {
  --kinsen-blue-950: #061b33;
  --kinsen-blue-900: #092743;
  --kinsen-blue-700: #0c4b79;
  --kinsen-blue-500: #1674a8;
  --kinsen-ice-100: #eef9ff;
  --kinsen-ice-200: #dff3ff;
  --kinsen-gold-500: #d79a1f;
  --kinsen-gold-400: #f4c34e;
  --kinsen-ink: #10243d;
  --kinsen-muted: #667789;
  --kinsen-line: rgba(12, 75, 121, 0.14);
  --kinsen-shadow: 0 22px 70px rgba(8, 39, 68, 0.12);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(244, 195, 78, 0.16), transparent 26rem),
    linear-gradient(180deg, var(--kinsen-ice-100) 0%, #ffffff 42%, #f7fbff 100%);
  color: var(--kinsen-ink);
}

.home-main,
.site-footer {
  position: relative;
  z-index: 2;
}

.ski-trail-progress {
  bottom: 0;
  left: 0;
  opacity: 0.54;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 0;
}

.ski-trail-progress svg {
  display: block;
  height: 100%;
  width: 100%;
}

.ski-trail-line {
  filter: drop-shadow(0 8px 14px rgba(215, 154, 31, 0.2));
}

.progress-skier {
  filter: drop-shadow(0 10px 14px rgba(6, 27, 51, 0.18));
  transform-box: fill-box;
  transform-origin: center;
}

.home-header.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(6, 27, 51, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(6, 27, 51, 0.18);
  color: #ffffff;
  gap: 22px;
  left: 50%;
  margin: 18px auto 0;
  max-width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  position: sticky;
  top: 18px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 20;
}

.home-header .brand {
  color: #ffffff;
  min-width: 190px;
}

.home-header .brand-logo {
  background: #ffffff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(12, 75, 121, 0.08);
  height: 42px;
  overflow: hidden;
  width: 42px;
}

.home-header .brand-logo img {
  height: 100%;
  object-fit: contain;
  padding: 6px;
  width: 100%;
}

.home-header .brand small,
.home-header .nav a {
  color: rgba(255, 255, 255, 0.72);
}

.home-header .nav {
  justify-content: center;
  margin: 0 auto;
}

.home-header .nav a {
  border-radius: 999px;
  padding: 10px 12px;
}

.home-header .nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.home-header .header-cta {
  background: linear-gradient(135deg, var(--kinsen-gold-400), var(--kinsen-gold-500));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(215, 154, 31, 0.24);
  color: var(--kinsen-blue-950);
  font-weight: 800;
  min-width: 104px;
}

.home-hero {
  background: transparent;
  min-height: calc(100svh - 24px);
  overflow: hidden;
  padding: 98px 24px 64px;
  position: relative;
}

.home-hero::before,
.home-hero::after,
.hero-video-bg {
  display: none;
}

.home-hero-content {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 249, 255, 0.78)),
    radial-gradient(circle at 72% 24%, rgba(244, 195, 78, 0.22), transparent 22rem);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 34px;
  box-shadow: var(--kinsen-shadow);
  color: var(--kinsen-ink);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  margin: 0 auto;
  max-width: 1160px;
  min-height: min(690px, calc(100svh - 128px));
  overflow: hidden;
  padding: clamp(28px, 5vw, 72px);
  position: relative;
}

.home-hero-content::before {
  background: linear-gradient(180deg, transparent, rgba(12, 75, 121, 0.08));
  bottom: -1px;
  content: "";
  height: 140px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.hero-copy-block {
  max-width: 570px;
  position: relative;
  z-index: 2;
}

.hero-news-pill {
  background: rgba(12, 75, 121, 0.08);
  border: 1px solid rgba(12, 75, 121, 0.12);
  border-radius: 999px;
  color: var(--kinsen-blue-700);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  padding: 7px 14px 7px 7px;
}

.hero-news-pill span {
  background: var(--kinsen-blue-900);
  border-radius: 999px;
  color: #ffffff;
  padding: 6px 10px;
}

.home-hero-content h1 {
  color: var(--kinsen-blue-950);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 850;
  line-height: 0.98;
  margin: 0 0 22px;
  max-width: 850px;
}

.home-hero-content p:not(.hero-news-pill) {
  color: var(--kinsen-muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.78;
  margin: 0;
  max-width: 640px;
}

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

.home-hero .primary-button,
.home-hero .secondary-button {
  border-radius: 999px;
  font-size: 16px;
  min-height: 54px;
  padding: 0 24px;
}

.home-hero .primary-button {
  background: linear-gradient(135deg, var(--kinsen-gold-400), var(--kinsen-gold-500));
  box-shadow: 0 14px 28px rgba(215, 154, 31, 0.25);
  color: var(--kinsen-blue-950);
}

.home-hero .secondary-button {
  background: #ffffff;
  border: 1px solid var(--kinsen-line);
  color: var(--kinsen-blue-900);
}

.hero-visual-panel {
  align-self: stretch;
  background:
    radial-gradient(circle at 74% 22%, rgba(244, 195, 78, 0.38), transparent 92px),
    linear-gradient(180deg, #cceeff 0%, #f7fcff 48%, #ffffff 100%);
  border: 1px solid rgba(12, 75, 121, 0.12);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  min-height: 480px;
  overflow: hidden;
  position: relative;
}

.hero-map-sun {
  background: rgba(244, 195, 78, 0.48);
  border-radius: 50%;
  height: 90px;
  position: absolute;
  right: 52px;
  top: 46px;
  width: 90px;
}

.hero-map-mountains {
  bottom: 42px;
  left: -18px;
  position: absolute;
  right: -18px;
  top: 92px;
}

.hero-map-mountains::before,
.hero-map-mountains::after {
  clip-path: polygon(50% 0, 100% 88%, 0 88%);
  content: "";
  position: absolute;
}

.hero-map-mountains::before {
  background: linear-gradient(180deg, #ffffff 0 18%, #b8ddf2 18% 100%);
  height: 330px;
  left: 0;
  top: 72px;
  width: 72%;
}

.hero-map-mountains::after {
  background: linear-gradient(180deg, #ffffff 0 21%, #86bedc 21% 100%);
  height: 390px;
  right: -4%;
  top: 8px;
  width: 78%;
}

.hero-map-route {
  border: 9px dashed rgba(215, 154, 31, 0.72);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  height: 390px;
  left: 28%;
  position: absolute;
  top: 70px;
  transform: rotate(36deg);
  width: 300px;
  z-index: 2;
}

.hero-visual-panel .sprite-icon {
  background-image: url("/pics/spirit.png");
  background-repeat: no-repeat;
  background-size: 260px auto;
  filter: drop-shadow(0 12px 18px rgba(6, 27, 51, 0.18));
  height: 70px;
  position: absolute;
  width: 70px;
  z-index: 3;
}

.hero-visual-panel .sprite-skier {
  left: 56%;
  top: 26%;
}

.hero-visual-panel .sprite-coach {
  left: 20%;
  top: 58%;
}

.hero-visual-panel .sprite-bus {
  bottom: 12%;
  left: 58%;
}

.hero-visual-panel .sprite-crown {
  right: 12%;
  top: 54%;
}

.hero-glow-ring {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(12, 75, 121, 0.1);
  border-radius: 999px;
  bottom: 12%;
  box-shadow: 0 24px 80px rgba(12, 75, 121, 0.16);
  height: 160px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 300px;
  z-index: 1;
}

.hero-proof-strip {
  bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  left: clamp(28px, 5vw, 72px);
  position: absolute;
  right: clamp(28px, 5vw, 72px);
  z-index: 3;
}

.hero-proof-strip span {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(12, 75, 121, 0.12);
  border-radius: 999px;
  color: var(--kinsen-blue-900);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 7px;
  padding: 9px 12px;
}

.hero-mini-tabs {
  display: none;
}

.home-section,
.contact-section {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(8, 39, 68, 0.08);
  margin: 36px auto;
  max-width: 1160px;
  padding: clamp(34px, 5vw, 64px);
}

.home-section-kicker {
  color: var(--kinsen-gold-500);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-section h2,
.contact-section h2 {
  color: var(--kinsen-blue-950);
}

.home-section-heading p,
.contact-section p {
  color: var(--kinsen-muted);
}

.package-comparison-shell,
.gear-story,
.coach-story,
.contact-card,
.contact-qr-card,
.review-image-rail figure {
  border-color: var(--kinsen-line);
  box-shadow: 0 14px 38px rgba(8, 39, 68, 0.07);
}

.service-people-selector button.is-active,
.service-people-selector button[aria-pressed="true"] {
  background: var(--kinsen-blue-900);
  border-color: var(--kinsen-blue-900);
  color: #ffffff;
}

.package-price {
  color: var(--kinsen-blue-950);
}

.package-price strong {
  color: var(--kinsen-gold-500);
}

.site-footer {
  background: var(--kinsen-blue-950);
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  html {
    scroll-snap-type: none;
  }

  .home-header.site-header {
    border-radius: 24px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr auto;
    max-width: calc(100% - 24px);
    min-height: 64px;
    padding: 10px;
    top: 10px;
  }

  .home-header .brand {
    min-width: 0;
  }

  .home-header .brand small {
    display: none;
  }

  .home-header .nav {
    display: none;
  }

  .home-header .header-cta {
    min-height: 42px;
    min-width: 96px;
    padding: 0 14px;
  }

  .ski-trail-progress {
    opacity: 0.38;
  }

  .home-hero,
  .home-section,
  .contact-section {
    scroll-snap-align: none;
  }

  .home-hero {
    min-height: auto;
    padding: 88px 12px 22px;
  }

  .home-hero-content {
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: auto;
    padding: 28px 20px 26px;
  }

  .home-hero-content h1 {
    font-size: clamp(38px, 12vw, 54px);
    letter-spacing: 0;
  }

  .home-hero-content p:not(.hero-news-pill) {
    font-size: 15px;
    line-height: 1.62;
  }

  .home-hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .home-hero .primary-button,
  .home-hero .secondary-button {
    flex: 1 1 150px;
    min-height: 50px;
  }

  .hero-visual-panel {
    flex: 1 1 auto;
    margin: 6px 0 0;
    min-height: 250px;
    width: 100%;
  }

  .hero-map-sun {
    height: 64px;
    right: 34px;
    top: 26px;
    width: 64px;
  }

  .hero-map-mountains {
    top: 58px;
  }

  .hero-map-mountains::before {
    height: 230px;
    top: 50px;
  }

  .hero-map-mountains::after {
    height: 260px;
    top: 10px;
  }

  .hero-map-route {
    height: 220px;
    left: 34%;
    top: 54px;
    width: 170px;
  }

  .hero-visual-panel .sprite-icon {
    background-size: 200px auto;
    height: 46px;
    width: 46px;
  }

  .hero-proof-strip {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
    left: 20px;
    margin-top: 0;
    position: static;
    right: 20px;
    width: 100%;
  }

  .hero-proof-strip span {
    justify-content: center;
    min-height: 42px;
  }

  .home-section,
  .contact-section {
    border-radius: 26px;
    margin: 16px 12px;
    min-height: 100svh;
    padding: 28px 18px;
  }
}

@media (min-width: 901px) {
  .home-main {
    padding-top: 12px;
  }
}

/* Current pass: stabilize KINSEN branding, homepage contact QR, and hero illustration */
.standalone-header .brand,
.rental-mobile-header .brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.standalone-header .brand-logo,
.rental-mobile-header .brand-logo {
  flex: 0 0 42px;
  height: 42px;
  width: 42px;
}

.standalone-header .brand-logo img,
.rental-mobile-header .brand-logo img {
  height: 100%;
  object-fit: contain;
  padding: 6px;
  width: 100%;
}

.standalone-header .brand strong,
.rental-mobile-header .brand strong {
  color: #0f223b;
}

.standalone-header .brand small,
.rental-mobile-header .brand small {
  color: #5c6d80;
}

.home-hero .home-hero-content {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.hero-map-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-end;
  min-height: 500px;
  padding: 0;
}

.hero-mountain-map {
  display: block;
  height: 100%;
  min-height: 460px;
  width: 100%;
}

.hero-map-snow-road-base {
  filter: drop-shadow(0 16px 24px rgba(6, 27, 51, 0.08));
}

.hero-map-snow-road {
  filter: drop-shadow(0 8px 14px rgba(215, 154, 31, 0.2));
}

.hero-map-mini-skier {
  filter: drop-shadow(0 10px 12px rgba(6, 27, 51, 0.18));
}

.hero-service-pin {
  animation: heroPinReveal 0.6s ease both;
  transform-origin: center;
}

.hero-service-pin:nth-of-type(1) {
  animation-delay: 0ms;
}

.hero-service-pin:nth-of-type(2) {
  animation-delay: 110ms;
}

.hero-service-pin:nth-of-type(3) {
  animation-delay: 220ms;
}

.hero-service-pin:nth-of-type(4) {
  animation-delay: 330ms;
}

.hero-pin-label {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(12, 75, 121, 0.14);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(8, 39, 68, 0.12);
  color: #0f223b;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  gap: 2px;
  justify-content: center;
  padding: 8px 10px;
}

.hero-pin-label strong {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-pin-label span {
  color: #617387;
  font-size: 11px;
  line-height: 1.25;
}

.hero-map-caption {
  align-items: center;
  background: rgba(6, 27, 51, 0.88);
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 16px 20px 18px;
}

.hero-map-caption strong {
  color: #ffffff;
  font-size: 15px;
}

.hero-map-caption span {
  font-size: 12px;
  line-height: 1.4;
  max-width: 250px;
  text-align: right;
}

.contact-section {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
}

.share-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 79, 145, 0.1);
  border-radius: 24px;
}

.qr-grid {
  align-items: stretch;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.qr-card {
  background: #ffffff;
  border: 1px solid rgba(23, 79, 145, 0.12);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  overflow: hidden;
  padding: 12px;
}

.qr-card img {
  aspect-ratio: 1;
  background: #ffffff;
  border-radius: 14px;
  display: block;
  object-fit: contain;
  width: 100%;
}

.qr-card figcaption {
  display: grid;
  gap: 4px;
  padding-top: 10px;
}

.qr-card strong {
  color: #10243d;
  font-size: 14px;
  font-weight: 800;
}

.qr-card span {
  color: #667789;
  font-size: 12px;
  line-height: 1.4;
}

@keyframes heroPinReveal {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .home-hero .home-hero-content,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-map-card {
    min-height: auto;
  }

  .hero-mountain-map {
    min-height: 280px;
  }

  .hero-map-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-map-caption span {
    max-width: none;
    text-align: left;
  }

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

/* Brochure-inspired homepage cover */
.home-hero {
  background: var(--kinsen-blue-950);
  min-height: 100svh;
  padding: 0;
}

.home-hero .hero-video-bg {
  border-radius: 0;
  display: block;
  inset: 0;
}

.home-hero .hero-video-bg img {
  filter: saturate(0.9) contrast(1.02) brightness(0.78);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home-hero .hero-video-bg::after {
  background:
    linear-gradient(180deg, rgba(5, 22, 40, 0.14) 0%, rgba(5, 22, 40, 0.08) 34%, rgba(5, 22, 40, 0.82) 73%, rgba(5, 22, 40, 0.96) 100%),
    linear-gradient(90deg, rgba(4, 20, 38, 0.42), transparent 65%);
  content: "";
  inset: 0;
  position: absolute;
}

.home-hero .home-hero-content.brochure-cover-hero {
  align-content: end;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 auto;
  max-width: 1280px;
  min-height: 100svh;
  padding: 118px 28px 34px;
  position: relative;
}

.home-hero .home-hero-content.brochure-cover-hero::before {
  display: none;
}

.hero-brand-lockup {
  align-items: center;
  display: inline-flex;
  gap: 16px;
  left: 28px;
  position: absolute;
  top: 120px;
  z-index: 2;
}

.hero-brand-mark {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  display: inline-flex;
  height: 62px;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  width: 62px;
}

.hero-brand-mark img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.hero-brand-lockup strong {
  color: #ffffff;
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-brand-lockup small {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-top: 4px;
}

.brochure-cover-copy {
  color: #ffffff;
  margin-top: auto;
  max-width: 920px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.home-hero .brochure-cover-copy .hero-news-pill {
  background: transparent;
  border: 0;
  color: #f3d8a4;
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.28em;
  margin: 0 0 24px;
  padding: 0;
  text-transform: uppercase;
}

.home-hero .brochure-cover-copy h1 {
  color: #ffffff;
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
  max-width: 900px;
}

.brochure-hero-subtitle {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(20px, 2.3vw, 32px);
  font-weight: 500;
  line-height: 1.35;
  margin: 14px 0 0;
}

.home-hero .brochure-cover-copy p:last-of-type {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.8;
  margin-top: 26px;
  max-width: 760px;
}

.brochure-cover-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.brochure-cover-pills span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  min-height: 38px;
  padding: 0 16px;
}

.home-hero .brochure-cover-copy .home-hero-actions {
  gap: 14px;
  margin-top: 28px;
}

.home-hero .brochure-cover-copy .primary-button {
  background: linear-gradient(135deg, var(--kinsen-gold-400), var(--kinsen-gold-500));
  box-shadow: 0 14px 28px rgba(215, 154, 31, 0.25);
  color: var(--kinsen-blue-950);
}

.home-hero .brochure-cover-copy .secondary-button {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.brochure-hero-footer {
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  letter-spacing: 0.12em;
  margin-top: 34px;
  padding-top: 18px;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .home-hero .home-hero-content.brochure-cover-hero {
    min-height: 100svh;
    padding: 100px 18px 24px;
  }

  .hero-brand-lockup {
    gap: 12px;
    left: 18px;
    top: 98px;
  }

  .hero-brand-mark {
    height: 52px;
    width: 52px;
  }

  .hero-brand-lockup strong {
    font-size: 20px;
  }

  .hero-brand-lockup small {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .home-hero .brochure-cover-copy .hero-news-pill {
    font-size: 11px;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
  }

  .home-hero .brochure-cover-copy h1 {
    font-size: clamp(38px, 12vw, 56px);
    line-height: 1.08;
  }

  .brochure-hero-subtitle {
    font-size: 19px;
    margin-top: 10px;
  }

  .home-hero .brochure-cover-copy p:last-of-type {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 20px;
  }

  .brochure-cover-pills {
    gap: 8px;
    margin-top: 18px;
  }

  .brochure-cover-pills span {
    font-size: 12px;
    min-height: 34px;
    padding: 0 12px;
  }

  .brochure-hero-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 0.08em;
    margin-top: 24px;
    padding-top: 14px;
  }
}

/* Brochure-style homepage sections */
.brochure-resorts-section,
.home-services,
.home-quote-section,
.company-section,
.home-reviews,
.contact-section {
  position: relative;
  z-index: 1;
}

.brochure-resorts-section {
  padding-top: 72px;
}

.brochure-resort-layout {
  display: grid;
  gap: 22px;
}

.brochure-resort-feature {
  border-radius: 30px;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.brochure-resort-feature img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.brochure-resort-feature::after {
  background: linear-gradient(180deg, rgba(7, 24, 42, 0.06), rgba(7, 24, 42, 0.72) 74%, rgba(7, 24, 42, 0.9));
  content: "";
  inset: 0;
  position: absolute;
}

.brochure-resort-overlay {
  bottom: 0;
  color: #ffffff;
  left: 0;
  padding: 34px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.brochure-resort-overlay span {
  color: rgba(243, 216, 164, 0.92);
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.brochure-resort-overlay h3 {
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  margin: 0 0 14px;
}

.brochure-resort-overlay p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  max-width: 760px;
}

.brochure-resort-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brochure-resort-grid article {
  background: #ffffff;
  border: 1px solid rgba(12, 46, 80, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(12, 46, 80, 0.06);
  padding: 24px 24px 22px;
}

.brochure-resort-grid span {
  color: #b9851e;
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.brochure-resort-grid h3 {
  color: #0f2741;
  font-size: 24px;
  margin: 0 0 10px;
}

.brochure-resort-grid p {
  color: #5a6a7b;
  line-height: 1.8;
  margin: 0;
}

.home-services {
  padding-top: 56px;
}

.brochure-package-list {
  display: grid;
  gap: 24px;
}

.brochure-package-card {
  align-items: stretch;
  background: #ffffff;
  border: 1px solid rgba(12, 46, 80, 0.08);
  border-radius: 28px;
  box-shadow: 0 22px 52px rgba(12, 46, 80, 0.07);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  overflow: hidden;
}

.brochure-package-copy {
  padding: 30px 30px 28px;
}

.brochure-package-index {
  color: #c69532;
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}

.brochure-package-head {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 16px;
}

.brochure-package-head h3 {
  color: #0f2741;
  font-size: 30px;
  margin: 0;
}

.brochure-package-head small {
  color: #6f7f90;
  font-size: 14px;
  font-weight: 700;
}

.brochure-package-summary,
.brochure-package-copy > p {
  color: #4e6072;
  line-height: 1.85;
  margin: 0 0 16px;
}

.brochure-package-summary strong {
  color: #102a45;
  font-size: 17px;
  font-weight: 800;
}

.brochure-package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.brochure-package-tags span {
  background: #f5f8fb;
  border: 1px solid rgba(12, 46, 80, 0.08);
  border-radius: 999px;
  color: #163451;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  min-height: 38px;
  padding: 0 14px;
  align-items: center;
}

.brochure-package-media {
  min-height: 100%;
}

.brochure-package-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.brochure-package-note {
  align-items: center;
  color: #5f7081;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: space-between;
  margin-top: 18px;
}

.brochure-package-note p {
  margin: 0;
}

.brochure-package-note a {
  color: #0c4b79;
  font-weight: 800;
  text-decoration: none;
}

.home-quote-section {
  padding-top: 24px;
}

.home-quote-section .quote-copy {
  max-width: 880px;
}

.home-quote-section .quote-tool {
  background: #ffffff;
  border: 1px solid rgba(12, 46, 80, 0.08);
  border-radius: 28px;
  box-shadow: 0 22px 56px rgba(12, 46, 80, 0.07);
  padding: 26px;
}

.home-quote-section .quote-result {
  background: linear-gradient(180deg, rgba(12, 75, 121, 0.06), rgba(12, 75, 121, 0.1));
  border: 1px solid rgba(12, 75, 121, 0.08);
}

.company-section {
  padding-top: 56px;
}

.home-reviews {
  padding-top: 56px;
}

.contact-section {
  padding-top: 56px;
}

@media (max-width: 900px) {
  .brochure-resorts-section {
    padding-top: 56px;
  }

  .brochure-resort-feature {
    min-height: 420px;
  }

  .brochure-resort-overlay {
    padding: 24px 20px 22px;
  }

  .brochure-resort-overlay h3 {
    font-size: 28px;
  }

  .brochure-resort-overlay p {
    font-size: 15px;
    line-height: 1.7;
  }

  .brochure-resort-grid {
    grid-template-columns: 1fr;
  }

  .home-services,
  .company-section,
  .home-reviews,
  .contact-section {
    padding-top: 44px;
  }

  .brochure-package-card {
    grid-template-columns: 1fr;
  }

  .brochure-package-media {
    order: -1;
  }

  .brochure-package-media img {
    aspect-ratio: 4 / 3;
  }

  .brochure-package-copy {
    padding: 22px 20px 20px;
  }

  .brochure-package-head h3 {
    font-size: 24px;
  }

  .brochure-package-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-quote-section {
    padding-top: 20px;
  }

  .home-quote-section .quote-tool {
    border-radius: 24px;
    padding: 18px;
  }
}
