html {
  background-color: #0b2233;
  background-image: linear-gradient(to bottom, var(--paper), var(--paper));
  background-repeat: no-repeat;
  background-size: 100% 50vh;
}
body.home {
  background-color: var(--paper);
  min-height: 100vh;
  min-height: 100dvh;
}
.home .page {
  max-width: 1360px;
  padding: 0 18px 0;
}

/* ========================================================
       STICKY TRANSLUCENT GLASSMORPHISM NAVBAR
       ======================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(244, 245, 242, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(18, 35, 43, 0.08);
  box-shadow: none;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.site-header.scrolled,
.site-header.menu-open {
  background: rgba(244, 245, 242, 0.94);
  border-bottom-color: transparent;
  box-shadow:
    0 6px 20px -3px rgba(18, 35, 43, 0.08),
    0 3px 8px -2px rgba(18, 35, 43, 0.04);
}
.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 18px;
}
.home .nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: none;
  padding: 0;
}
.home .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
  transition: opacity 0.18s ease;
}
.home .brand:hover {
  opacity: 0.88;
}
.home .mark {
  width: 52px;
  height: 52px;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: none;
}
.home .mark-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.35);
  display: block;
}
.home .brand-title {
  display: block;
  font: 700 19.5px/1.15 var(--font-display);
  letter-spacing: -0.035em;
  color: var(--ink);
}
.home .brand-sub {
  display: block;
  font: 700 11px/1.2 var(--font-body);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 2px;
}

/* Desktop Navigation Links */
.home .navlinks {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  border-top: none;
}
.home .navlinks a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font: 600 13px/1.2 var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #334155;
  text-decoration: none;
  background: transparent;
  transition: color 0.2s ease;
  white-space: nowrap;
  min-height: auto;
}
.home .navlinks a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 0.15s ease-out,
    opacity 0.12s ease-out;
}
.home .navlinks a:hover {
  color: var(--blue);
  background: transparent;
}
.home .navlinks a:hover::after {
  transform: scaleX(1);
  opacity: 1;
  transition:
    transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.04s,
    opacity 0.16s ease 0.04s;
}
.home .navlinks a:focus-visible::after,
.home .navlinks a.active::after {
  transform: scaleX(1);
  opacity: 1;
  transition:
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.18s ease;
}
.home .navlinks:hover a.active:not(:hover)::after {
  transform: scaleX(0);
  opacity: 0;
}
.home .navlinks a.active {
  color: var(--blue);
  font-weight: 600;
}

/* Action Buttons (Login & CTA) */
.home .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.home .nav-login {
  font: 600 14.5px/1 var(--font-body);
  color: var(--ink);
  padding: 12px 22px;
  border: 1px solid rgba(18, 35, 43, 0.18);
  border-radius: 8px;
  background: transparent;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none !important;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.home .nav-login:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: none !important;
}
.home .navcta {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 12px 22px;
  font: 700 14.5px/1 var(--font-body);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none !important;
  white-space: nowrap;
  min-height: auto;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease;
}
.home .navcta:hover {
  background: var(--blue2);
  border-color: var(--blue2);
  color: #fff;
  transform: none;
  box-shadow: none !important;
}

/* Hamburger Toggle Button (No container, no color change) */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: none;
  outline: none;
}
.nav-toggle:hover,
.nav-toggle:active,
.nav-toggle.open {
  background: transparent;
  border: none;
  box-shadow: none;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle.open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Glass Drawer */
.mobile-drawer {
  display: none;
  width: 100%;
  max-height: calc(100dvh - 70px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: 1px solid rgba(18, 35, 43, 0.06);
  box-shadow: none;
}
.mobile-drawer.open {
  display: block;
  animation: mobileDrawerSlide 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes mobileDrawerSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-drawer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 20px 22px;
}
.mobile-navlinks {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 18px;
}
.mobile-navlink {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(18, 35, 43, 0.07);
  text-decoration: none;
  color: var(--ink);
  transition: color 0.18s ease;
}
.mobile-navlink:last-child {
  border-bottom: none;
}
.mobile-navlink:hover,
.mobile-navlink:active,
.mobile-navlink.active {
  background: transparent;
  transform: none;
  color: var(--blue);
}
.mobile-navlink:hover .mnav-text strong,
.mobile-navlink.active .mnav-text strong {
  color: var(--blue);
}
.mobile-navlink.active .mnav-text strong::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-left: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(8, 117, 166, 0.18);
}
.mobile-navlink.active .mnav-icon {
  color: var(--blue);
}
.mnav-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}
.mnav-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  display: block;
}
.mnav-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.mnav-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.18s ease;
}
.mnav-text small {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}
.mnav-arrow {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition:
    color 0.18s ease,
    transform 0.18s ease;
  flex-shrink: 0;
}
.mnav-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  display: block;
}
.mobile-navlink:hover .mnav-arrow,
.mobile-navlink.active .mnav-arrow {
  color: var(--blue);
  transform: translateX(3px);
}
.mobile-drawer-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 35, 43, 0.08);
}
.mobile-btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(18, 35, 43, 0.18);
  font: 700 13.5px var(--font-body);
  color: var(--ink);
  text-decoration: none;
  box-shadow: none !important;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.mobile-btn-login:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: none !important;
}
.mobile-btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 13px 18px;
  border-radius: 8px;
  background: var(--blue);
  border: 1px solid var(--blue);
  font: 700 13.5px var(--font-body);
  color: #fff;
  text-decoration: none;
  box-shadow: none !important;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease;
}
.mobile-btn-book:hover {
  background: var(--blue2);
  border-color: var(--blue2);
  color: #fff;
  box-shadow: none !important;
}

.home a:focus-visible,
.home button:focus-visible {
  outline: 3px solid var(--signal, #df613c);
  outline-offset: 3px;
}
.home .label,
.home .kicker {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.13em;
}
.home .section {
  padding-top: clamp(58px, 4.2vw + 42px, 96px);
  scroll-margin-top: 85px;
}
.home .sectionhead {
  border-top: none;
  padding-top: 0;
  margin-bottom: 35px;
}
.home .sectionhead .label,
.service-intro .label {
  font: 700 11.5px/1.2 var(--font-display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.home .sectionhead .label:before,
.service-intro .label:before {
  content: "";
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: var(--blue);
}
.home .sectionhead h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 62px);
  max-width: 660px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: var(--ink);
}
.home .sectionhead p {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 350px;
  color: var(--muted);
  letter-spacing: -0.01em;
}

/* The opening spread borrows its grid and numbering from a court score sheet. */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 55px);
  align-items: center;
  padding: clamp(14px, 2.5vw, 32px) 0 clamp(8px, 1.2vw, 14px);
  min-height: auto;
  background: transparent;
  color: var(--ink);
  scroll-margin-top: 100px;
}
.hero-copy {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .kicker {
  font: 700 11px/1.2 var(--font-display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero .kicker:before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--blue);
}
.hero h1 {
  font: 600 clamp(48px, 6.2vw, 84px)/1.04 var(--font-display);
  letter-spacing: -0.05em;
  margin: 0;
  max-width: 650px;
  color: var(--ink);
}
.hero h1 .line-mid {
  display: inline-block;
  white-space: nowrap;
  color: var(--ink);
}
.hero h1 .hero-accent,
.hero h1 em {
  color: var(--blue);
  font-style: normal;
}
.hero-copy > p {
  max-width: 480px;
  margin: 24px 0 32px;
  line-height: 1.65;
  color: var(--muted);
  font-size: 17px;
  letter-spacing: -0.01em;
}
.hero .actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.hero .primary {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 13.5px 24px;
  font: 700 14px var(--font-body);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  box-shadow: none !important;
  transform: none !important;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease;
}
.hero .primary:hover {
  background: var(--blue2);
  border-color: var(--blue2);
  color: var(--white);
  transform: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
}
.hero .primary b {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: 9px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}
.hero .textlink {
  font: 600 13px/1.4 var(--font-display);
  letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 1.5px solid rgba(18, 35, 43, 0.25);
  padding-bottom: 3px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.hero .textlink:hover {
  color: var(--blue);
  border-color: var(--blue);
}
.hero-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 36px;
  font: 600 11px/1.2 var(--font-display);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta span:last-child {
  text-align: right;
}

/* KOMPOSISI FOTO HERO (2 / 3 FOTO) */
/* KOMPOSISI FOTO HERO (2 / 3 FOTO) */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
}
.hero-photo-switch {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  background: rgba(18, 35, 43, 0.02);
  border: 1px solid rgba(18, 35, 43, 0.07);
  border-radius: 8px;
  margin-bottom: 14px;
  float: right;
  box-shadow: none;
}
.hero-photo-switch button {
  border: 0;
  background: transparent;
  padding: 5px 13px;
  border-radius: 5px;
  font: 700 10px var(--font-display);
  letter-spacing: 0.05em;
  color: var(--muted);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}
.hero-photo-switch button:hover:not(.active) {
  color: var(--ink);
}
.hero-photo-switch button.active {
  background: var(--blue);
  color: var(--white);
}
.hero-visual {
  position: relative;
  height: 480px;
  clear: both;
}

/* Foto Utama: Badminton */
.photo-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 53%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(18, 35, 43, 0.1);
  background: var(--blue2);
  transition:
    width 0.3s ease,
    border-radius 0.3s ease;
}
.photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.visual-tag {
  position: absolute;
  right: 16px;
  top: 16px;
  background: rgba(214, 255, 35, 0.55);
  backdrop-filter: blur(8px) saturate(190%) brightness(112%);
  -webkit-backdrop-filter: blur(8px) saturate(190%) brightness(112%);
  border: none;
  color: #0b1a20;
  padding: 8px 15px;
  font: 800 11px/1 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  z-index: 3;
  box-shadow: 0 4px 18px rgba(200, 255, 30, 0.32);
}

/* Kolom Kiri: Bento Grid 2 Kartu (Tenis Meja & Futsal) */
.photo-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 44%;
  height: calc(50% - 8px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(18, 35, 43, 0.08);
  z-index: 2;
  transition: opacity 0.25s ease;
  background: var(--paper);
}
.photo-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.visual-tag-accent {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(214, 255, 35, 0.55);
  backdrop-filter: blur(8px) saturate(190%) brightness(112%);
  -webkit-backdrop-filter: blur(8px) saturate(190%) brightness(112%);
  border: none;
  color: #0b1a20;
  padding: 7px 13px;
  font: 800 10.5px/1 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  z-index: 3;
  box-shadow: 0 4px 18px rgba(200, 255, 30, 0.32);
}

.photo-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44%;
  height: calc(50% - 8px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(18, 35, 43, 0.08);
  z-index: 2;
  transition: all 0.3s ease;
  background: var(--paper);
}
.photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.visual-tag-secondary {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(15, 23, 30, 0.4);
  backdrop-filter: blur(8px) saturate(170%);
  -webkit-backdrop-filter: blur(8px) saturate(170%);
  border: none;
  color: #ffffff;
  padding: 7px 13px;
  font: 700 10.5px/1 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* Center Stamp di Titik Pertemuan Seam */
.hero-stamp {
  position: absolute;
  left: 44%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: 6px solid var(--white);
  box-shadow: none;
  display: grid;
  place-items: center;
  text-align: center;
  font: 700 10px/1.15 var(--font-display);
  z-index: 5;
  user-select: none;
  transition: all 0.3s ease;
}
.hero-stamp span {
  font-size: 20px;
  line-height: 1;
  display: block;
}

/* ==========================================================================
       MODE 2 CABANG (1-to-1 PERSIS refrensi-templat-gaya-visual-design.html)
       ========================================================================== */
.hero-visual.mode-2 {
  height: 500px;
}
.hero-visual.mode-2 .photo-accent {
  display: none !important;
}
.hero-visual.mode-2 .photo-main {
  width: 76%;
  height: 455px;
  border-radius: 8px 8px 42% 8px;
  box-shadow: none;
}
.hero-visual.mode-2 .visual-tag {
  right: 8px;
  top: 17px;
  padding: 9px 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 6px;
}
.hero-visual.mode-2 .photo-small {
  left: 0;
  bottom: 0;
  width: 46%;
  height: 210px;
  border: 10px solid var(--paper);
  background: var(--paper);
  border-radius: 18px;
  box-shadow: none;
}
.hero-visual.mode-2 .photo-small img {
  border-radius: 8px;
}
.hero-visual.mode-2 .visual-tag-secondary {
  display: block;
  left: 12px;
  bottom: 12px;
  padding: 8px 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 6px;
  z-index: 3;
}
.hero-visual.mode-2 .hero-stamp {
  left: 37%;
  bottom: 18px;
  top: auto;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  font: 700 10px/1.15 var(--font-display);
  transform: rotate(-9deg);
  border: 7px solid var(--paper);
  box-shadow: none;
}
.hero-visual.mode-2 .hero-stamp span {
  font-size: 20px;
  line-height: 1;
  display: block;
}

.quick {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin: 8px 0 0;
  padding: 22px 0;
  background: transparent;
  border: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: none !important;
}
.quick .q {
  padding: 0;
  border: none !important;
  display: flex;
  align-items: center;
  gap: 12px;
}
.quick .q-icon {
  width: 22px;
  height: 22px;
  color: var(--blue);
  flex-shrink: 0;
}
.quick .q-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.quick .q small {
  font: 500 12px/1.2 var(--font-body);
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.01em;
  text-transform: none;
}
.quick .q strong {
  font: 700 14.5px/1.25 var(--font-body);
  color: var(--ink);
}
.quick .qbutton {
  border-radius: 8px;
  margin: 0;
  padding: 12.5px 22px;
  font: 700 13px/1 var(--font-body);
  background: var(--blue);
  color: #fff;
  box-shadow: none !important;
  transition: background-color 0.18s ease;
  white-space: nowrap;
}
.quick .qbutton:hover {
  background: var(--blue2);
}

.sports {
  display: grid;
  grid-template-columns: 1.13fr 0.87fr;
  grid-template-rows: repeat(2, minmax(240px, auto));
  gap: 16px;
}
.sport {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 250px;
  background: var(--paper);
  border: 1px solid rgba(18, 35, 43, 0.12);
  border-radius: 8px;
  overflow: hidden;
}
.sport:first-child {
  grid-row: span 2;
  grid-template-columns: 1fr;
  grid-template-rows: 1.1fr auto;
}
.sport-visual {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.sport:first-child .sport-visual {
  min-height: 310px;
}
.sport-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sport-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 30, 0.35) 0%,
    transparent 45%
  );
  pointer-events: none;
}
.sport-visual span {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 13px;
  border-radius: 6px;
  font: 800 10.5px/1 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px) saturate(190%) brightness(112%);
  -webkit-backdrop-filter: blur(8px) saturate(190%) brightness(112%);
  border: none;
  user-select: none;
}
.sport-badminton .sport-visual span {
  background: rgba(214, 255, 35, 0.55);
  color: #0b1a20;
}
.sport-futsal .sport-visual span {
  background: rgba(15, 23, 30, 0.4);
  backdrop-filter: blur(8px) saturate(170%);
  -webkit-backdrop-filter: blur(8px) saturate(170%);
  color: #ffffff;
}
.sport-table .sport-visual span {
  background: rgba(214, 255, 35, 0.55);
  color: #0b1a20;
}
.sportinfo {
  padding: 24px 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sportnum {
  font: 700 11px/1.2 var(--font-display);
  letter-spacing: 0.13em;
  color: var(--blue);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.sportnum:before {
  content: "";
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: var(--blue);
}
.sport h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin: 4px 0 0;
  font-weight: 600;
  color: var(--ink);
}
.sport:first-child h3 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin: 6px 0 0;
}
.sport p {
  font: 400 13.5px/1.65 var(--font-body);
  color: var(--muted);
  letter-spacing: -0.01em;
  margin: 8px 0 16px;
  max-width: 320px;
}
.sport:first-child p {
  font-size: 14.5px;
  max-width: 440px;
}
.sport-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-bottom: 22px;
}
.sport-meta span {
  font: 600 11px/1.2 var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #334155;
  background: rgba(18, 35, 43, 0.04);
  border: 1px solid rgba(18, 35, 43, 0.08);
  padding: 5px 9px;
  border-radius: 5px;
  user-select: none;
}
.sport a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 6px;
  font: 700 12.5px/1.2 var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(8, 117, 166, 0.035);
  border: 1px solid rgba(8, 117, 166, 0.15);
  box-shadow: none !important;
  text-decoration: none;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.sport a:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: none !important;
  box-shadow: none !important;
}

.service-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(35px, 6vw, 90px);
  align-items: start;
}
.service-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin: 12px 0 18px;
}
.service-intro p {
  font: 400 15.5px/1.65 var(--font-body);
  color: var(--muted);
  letter-spacing: -0.01em;
  max-width: 350px;
  margin: 0;
}
.service-intro .service-note {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  font: 600 11px/1.2 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #334155;
  background: rgba(18, 35, 43, 0.04);
  border: 1px solid rgba(18, 35, 43, 0.08);
  padding: 5.5px 11px;
  border-radius: 5px;
  user-select: none;
}
.services {
  border-top: 1px solid rgba(18, 35, 43, 0.12);
}
.service {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(18, 35, 43, 0.12);
  background: transparent;
}
.service .num {
  font: 700 24px/1 var(--font-display);
  color: var(--blue);
  letter-spacing: -0.05em;
  padding-top: 2px;
}
.service-body {
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.service:hover .service-body {
  transform: translateX(8px);
}
.service h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.8vw, 21px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: var(--ink);
  transition: color 0.18s ease;
}
.service:hover h3 {
  color: var(--blue);
}
.service p {
  margin: 6px 0 0;
  font: 400 14px/1.65 var(--font-body);
  color: var(--muted);
  letter-spacing: -0.01em;
}

.info {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border: 1px solid rgba(18, 35, 43, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}
.info-main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #007cb0 0%, #005f88 100%);
  color: var(--white);
  padding: clamp(24px, 2.5vw, 36px) clamp(28px, 3.5vw, 48px);
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.info-main .label {
  font: 700 11px/1.2 var(--font-display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.info-main .label:before {
  content: "";
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: var(--lime);
}
.info-main h2,
.info-main h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.04em;
  max-width: 440px;
  margin: 16px 0 14px;
}
.info-main p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 380px;
  font: 400 14.5px/1.65 var(--font-body);
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.info-main .info-cta,
.info-main .textlink {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--white);
  color: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font: 700 13px/1 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: none !important;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.info-main .info-cta:hover,
.info-main .textlink:hover {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
  transform: none !important;
  box-shadow: none !important;
}
.info-main .info-cta:active,
.info-main .textlink:active {
  transform: none !important;
}
.info-main .info-cta .btn-arrow,
.info-main .textlink .btn-arrow {
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
}
.info-main:after {
  content: "";
  width: 280px;
  height: 280px;
  position: absolute;
  right: -80px;
  bottom: -80px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
.info-list {
  padding: 24px clamp(24px, 3.2vw, 42px) 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
}
.receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(18, 35, 43, 0.1);
}
.receipt-head span:first-child {
  font: 700 11.5px/1.2 var(--font-display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.receipt-head span:first-child:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.receipt-head span:last-child {
  font: 700 10.5px/1 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(8, 117, 166, 0.08);
  border: 1px solid rgba(8, 117, 166, 0.15);
  padding: 4px 8px;
  border-radius: 4px;
}
.info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(18, 35, 43, 0.08);
}
.info-row small {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font: 700 11px/1.4 var(--font-display);
  color: var(--muted);
  padding-top: 3px;
}
.info-row strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.info-tag {
  font: 600 11px/1.2 var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #334155;
  background: rgba(18, 35, 43, 0.04);
  border: 1px solid rgba(18, 35, 43, 0.08);
  padding: 4.5px 9px;
  border-radius: 5px;
  user-select: none;
}
.info-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
}
.info-contact .contact-type {
  color: var(--muted);
  font-weight: 500;
  margin-right: 4px;
}
.info-contact a {
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
}
.info-contact a:hover {
  color: var(--blue2);
  text-decoration: none;
}

.receipt-end {
  margin-top: 0;
  padding-top: 14px;
  color: var(--muted);
  font: 700 11px/1.4 var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}
/* ========================================================
         COMPACT 3-COLUMN EDITORIAL FOOTER — FULL-BLEED DARK NAVY
         ======================================================== */
.home footer {
  width: 100%;
  margin-top: clamp(64px, 5vw + 40px, 100px);
  background: #0b2233;
  border-top: none;
  border-radius: 0;
  padding: 56px 0 max(32px, env(safe-area-inset-bottom, 32px));
  display: block;
}
.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 1.45fr;
  gap: clamp(28px, 3.5vw, 52px);
  align-items: stretch;
}
/* Brand text on dark footer */
.home footer .brand-title {
  color: #fff;
}
.home footer .brand-sub {
  color: var(--blue);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand .brand {
  padding: 0;
}
.footer-brand p {
  margin: 0;
  font: 400 14.5px/1.65 var(--font-body);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.01em;
  max-width: 380px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  font: 600 10.5px/1.2 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 5px 10px;
  border-radius: 5px;
  user-select: none;
}
.footer-col h3,
.footer-col h4 {
  margin: 0 0 16px;
  font: 700 13px/1.2 var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font: 500 13.5px/1.4 var(--font-body);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-links a:hover {
  color: var(--blue);
  text-decoration: none;
}
.footer-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.footer-map-head h3,
.footer-map-head h4 {
  margin: 0;
  font: 700 13px/1.2 var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.footer-map-link {
  font: 600 12px/1.2 var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-map-link:hover {
  color: #fff;
  text-decoration: none;
}
.footer-col-map {
  display: flex;
  flex-direction: column;
}
.footer-map-frame {
  width: 100%;
  flex: 1 1 0;
  min-height: 120px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none !important;
  background: #0d2b40;
}
.footer-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.footer-sub {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font: 500 12px/1.5 var(--font-body);
  color: rgba(255, 255, 255, 0.35);
}
.footer-sub .footer-tagline {
  font: 700 10.5px/1.4 var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1000px) {
  .hero h1 {
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1.04;
  }
  .sport:not(:first-child) {
    grid-template-columns: 1fr;
  }
  .sport:not(:first-child) .sport-visual {
    min-height: 185px;
  }
  .service-layout {
    gap: 32px;
  }
}
@media (max-width: 800px) {
  .header-inner,
  .footer-inner {
    padding: 0 20px;
  }
  .home .nav {
    min-height: 76px;
    flex-wrap: nowrap !important;
  }
  .home .navlinks {
    display: none !important;
  }
  .home .navcta {
    display: none !important;
  }
  .nav-toggle {
    display: flex !important;
  }
  .home .page {
    padding: 0 20px 0;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 25px 0 16px;
  }
  .hero-copy {
    min-height: auto;
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(48px, 9.2vw, 66px);
    line-height: 1.04;
  }
  .hero-meta {
    margin-top: 26px;
    font-size: 10.5px;
  }
  .hero-visual {
    height: 420px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-visual.mode-2 {
    height: 440px;
  }
  .photo-main {
    width: 53%;
    height: 100%;
    border-radius: 8px;
  }
  .hero-visual.mode-2 .photo-main {
    width: 78%;
    height: 395px;
    border-radius: 8px 8px 42% 8px;
  }
  .photo-accent {
    width: 44%;
    height: calc(50% - 7px);
    border-radius: 8px;
  }
  .photo-small {
    width: 44%;
    height: calc(50% - 7px);
    border-radius: 8px;
  }
  .hero-visual.mode-2 .photo-small {
    height: 190px;
    width: 46%;
    border: 8px solid var(--paper);
    border-radius: 16px;
  }
  .hero-visual.mode-2 .photo-small img {
    border-radius: 8px;
  }
  .hero-stamp {
    width: 78px;
    height: 78px;
    left: 44%;
    font-size: 9px;
  }
  .hero-stamp span {
    font-size: 16px;
  }
  .hero-visual.mode-2 .hero-stamp {
    left: 37%;
    bottom: 12px;
    top: auto;
    width: 83px;
    height: 83px;
    font-size: 8px;
    border-width: 6px;
    transform: rotate(-9deg);
  }
  .hero-visual.mode-2 .hero-stamp span {
    font-size: 16px;
  }
  .quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    margin: 8px 0 0;
    padding: 20px 0 0;
    border-bottom: none !important;
  }
  .quick .q {
    border: none !important;
    padding: 0;
  }
  .quick .q:nth-child(3) {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--line) !important;
    padding-bottom: 18px;
    margin-bottom: 6px;
  }
  .quick .qbutton {
    grid-column: 1 / -1;
    margin: 0;
    justify-content: center;
  }
  .sports {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .sport:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .sport:not(:first-child) {
    grid-template-columns: 1fr;
  }
  .service-layout {
    grid-template-columns: 1fr;
  }
  .service-intro p {
    max-width: 500px;
  }
  .info {
    grid-template-columns: 1fr;
  }
  .info-main {
    min-height: auto;
    padding: 34px 28px;
    border-bottom: 1px solid rgba(18, 35, 43, 0.12);
  }
  .info-list {
    padding: 28px 24px;
  }
  .receipt-end {
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-col-map {
    grid-column: span 2;
  }
  .footer-map-frame {
    flex: none;
    height: 190px;
  }
  .footer-sub {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
  }
}
@media (max-width: 560px) {
  .header-inner,
  .footer-inner {
    padding: 0 16px;
  }
  .home .nav {
    min-height: 74px;
    gap: 12px;
  }
  .home .brand {
    gap: 12px;
  }
  .home .mark {
    width: 48px;
    height: 48px;
  }
  .home .brand-title {
    font-size: 19px;
  }
  .home .brand-sub {
    font-size: 11px;
    letter-spacing: 0.13em;
  }
  .home .nav-login {
    display: none !important;
  }
  .home .navcta {
    display: none !important;
  }
  .mobile-drawer-inner {
    padding: 12px 16px 20px;
  }
  .mobile-drawer-footer {
    grid-template-columns: 1fr;
  }
  .home .page {
    padding: 0 16px 0;
  }
  .hero-copy {
    min-height: auto;
  }
  .hero .kicker {
    font-size: 10px;
    letter-spacing: 0.11em;
    margin-bottom: 14px;
    gap: 8px;
  }
  .hero .kicker:before {
    width: 14px;
  }
  .hero h1 {
    font-size: clamp(42px, 11.2vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }
  .hero-copy > p {
    font-size: 15.5px;
    line-height: 1.6;
    margin: 16px 0 22px;
  }
  .home .sectionhead p,
  .service-intro p {
    font-size: 14.5px;
  }
  .footer-brand p {
    font-size: 14px;
  }
  .hero .actions {
    gap: 14px 18px;
  }
  .hero .primary {
    padding: 13px 22px;
    font-size: 13.5px;
    border-radius: 8px;
  }
  .hero .textlink {
    font-size: 12.5px;
  }
  .hero-meta {
    margin-top: 22px;
    padding-top: 14px;
    font-size: 9.5px;
    letter-spacing: 0.07em;
    gap: 8px 12px;
  }
  .hero-visual-wrapper {
    display: flex;
    flex-direction: column;
  }
  .hero-photo-switch {
    align-self: flex-end;
    margin-bottom: 12px;
  }
  .hero-photo-switch button {
    padding: 4px 10px;
    font-size: 9.5px;
  }
  .hero-visual {
    height: 340px;
    max-width: 100%;
  }
  .hero-visual.mode-2 {
    height: 380px;
  }
  .photo-main {
    width: 54%;
    height: 100%;
    border-radius: 8px;
  }
  .hero-visual.mode-2 .photo-main {
    width: 80%;
    height: 335px;
    border-radius: 8px 8px 40% 8px;
  }
  .photo-accent {
    width: 43%;
    height: calc(50% - 5px);
    border-radius: 8px;
  }
  .photo-small {
    width: 43%;
    height: calc(50% - 5px);
    border-radius: 8px;
  }
  .hero-visual.mode-2 .photo-small {
    height: 160px;
    width: 50%;
    border: 6px solid var(--paper);
    border-radius: 14px;
  }
  .hero-visual.mode-2 .photo-small img {
    border-radius: 8px;
  }
  .hero-stamp {
    width: 68px;
    height: 68px;
    left: 43%;
    border-width: 4px;
    font-size: 8px;
  }
  .hero-stamp span {
    font-size: 15px;
  }
  .hero-visual.mode-2 .hero-stamp {
    left: 37%;
    bottom: 12px;
    top: auto;
    width: 76px;
    height: 76px;
    border-width: 5px;
    transform: rotate(-9deg);
    font-size: 8px;
  }
  .hero-visual.mode-2 .hero-stamp span {
    font-size: 15px;
  }
  .hero-visual.mode-2 .visual-tag-secondary {
    font-size: 10px;
    padding: 6px 10px;
    border-radius: 5px;
    left: 8px;
    bottom: 8px;
  }
  .quick {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 18px 0 0;
    margin: 6px 0 0;
    border-bottom: none !important;
  }
  .quick .q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 0 11px;
    border: none !important;
    border-bottom: 1px solid rgba(18, 35, 43, 0.08) !important;
  }
  .quick .q:nth-child(3) {
    border-bottom: 1px solid var(--line) !important;
    padding-bottom: 16px;
    margin-bottom: 6px;
  }
  .quick .q-icon {
    width: 22px;
    height: 22px;
    color: var(--blue);
    flex-shrink: 0;
  }
  .quick .q-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
  }
  .quick .q small {
    font: 500 12px/1.2 var(--font-body);
    color: var(--muted);
    letter-spacing: 0.01em;
    text-transform: none;
  }
  .quick .q strong {
    font: 700 14px/1.3 var(--font-body);
    color: var(--ink);
    text-align: left;
  }
  .quick .qbutton {
    width: 100%;
    justify-content: center;
    padding: 13.5px 18px;
    margin: 0;
    font-size: 13.5px;
    border-radius: 8px;
  }
  .sports {
    display: block;
  }
  .sport {
    margin-bottom: 14px;
  }
  .sport:first-child .sport-visual {
    min-height: 230px;
  }
  .sport-visual {
    min-height: 180px;
  }
  .sportinfo {
    padding: 20px;
  }
  .sport p {
    margin-bottom: 14px;
  }
  .sport a {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }
  .service {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 18px 0;
  }
  .service .num {
    font-size: 20px;
  }
  .service h3 {
    font-size: 18px;
  }
  .info-main {
    padding: 26px 18px;
  }
  .info-main h2,
  .info-main h3 {
    font-size: clamp(26px, 7.8vw, 34px);
    margin: 14px 0 12px;
  }
  .info-main p {
    margin-bottom: 24px;
  }
  .info-main .info-cta,
  .info-main .textlink {
    width: 100%;
    justify-content: center;
  }
  .info-list {
    padding: 22px 16px;
  }
  .info-row {
    grid-template-columns: 84px 1fr;
    gap: 12px;
    padding: 13px 0;
  }
  .home footer {
    margin-top: 52px;
    padding: 44px 0 max(40px, calc(env(safe-area-inset-bottom, 0px) + 26px));
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-col-map {
    grid-column: span 1;
  }
  .footer-map-frame {
    flex: none;
    height: 175px;
  }
  .footer-sub {
    margin-top: 32px;
    padding-top: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .footer-sub .footer-tagline {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
}
