@charset "UTF-8";

/* Horse Hub Japan v0.1 homepage */
:root {
  --hh-forest-950: #10271f;
  --hh-forest-900: #17352a;
  --hh-forest-800: #214b3b;
  --hh-forest-700: #2f6350;
  --hh-olive-600: #718260;
  --hh-olive-400: #a3ad88;
  --hh-sage-200: #d8decd;
  --hh-sage-100: #e9ede3;
  --hh-cream-100: #f7f4eb;
  --hh-cream-50: #fbfaf6;
  --hh-sand-300: #d8c5a4;
  --hh-sand-200: #e7dac2;
  --hh-gold-500: #aa8955;
  --hh-ink: #1b2621;
  --hh-muted: #67726c;
  --hh-white: #fff;
  --hh-border: rgba(23, 53, 42, 0.14);
  --hh-shadow-sm: 0 10px 30px rgba(20, 48, 38, 0.08);
  --hh-shadow-lg: 0 24px 70px rgba(20, 48, 38, 0.16);
  --hh-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", Georgia, serif;
  --hh-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --hh-shell: 1240px;
  --hh-radius-sm: 10px;
  --hh-radius-md: 18px;
  --hh-radius-lg: 28px;
  --hh-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body.hh-homepage {
  margin: 0;
  background: var(--hh-cream-50);
  color: var(--hh-ink);
  font-family: var(--hh-sans);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

body.hh-homepage,
body.hh-homepage * {
  box-sizing: border-box;
}

body.hh-homepage img,
body.hh-homepage svg {
  display: block;
  max-width: 100%;
}

body.hh-homepage a {
  color: inherit;
  text-decoration: none;
}

body.hh-homepage button,
body.hh-homepage input {
  font: inherit;
}

body.hh-homepage button {
  color: inherit;
}

body.hh-homepage :focus-visible {
  border-radius: 4px;
  outline: 3px solid #e2a85d;
  outline-offset: 4px;
}

body.hh-homepage.is-menu-open {
  overflow: hidden;
}

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

.hh-skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--hh-white);
  background: var(--hh-forest-900);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.hh-skip-link:focus {
  transform: translateY(0);
}

.hh-shell {
  width: min(calc(100% - 48px), var(--hh-shell));
  margin-inline: auto;
}

.hh-icon {
  width: 1.35em;
  height: 1.35em;
  flex: 0 0 auto;
}

.hh-eyebrow {
  margin: 0 0 10px;
  color: var(--hh-gold-500);
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Header */
.hh-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(251, 250, 246, 0.95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.hh-site-header.is-scrolled {
  border-bottom-color: var(--hh-border);
  box-shadow: 0 8px 24px rgba(23, 53, 42, 0.06);
}

body.admin-bar .hh-site-header {
  top: 32px;
}

.hh-header-inner {
  display: flex;
  width: min(calc(100% - 48px), 1380px);
  min-height: 88px;
  margin-inline: auto;
  align-items: center;
  gap: 30px;
}

.hh-brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
}

.hh-brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  color: var(--hh-white);
  background: var(--hh-forest-900);
  border-radius: 50% 50% 44% 56% / 52% 45% 55% 48%;
  place-items: center;
  transform: rotate(-3deg);
}

.hh-brand-mark > span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  transform: translateX(-1px) rotate(3deg);
}

.hh-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.hh-brand-copy strong {
  color: var(--hh-forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.105em;
}

.hh-brand-copy small {
  margin-top: 7px;
  color: var(--hh-muted);
  font-size: 0.63rem;
  letter-spacing: 0.075em;
}

.hh-desktop-nav {
  margin-left: auto;
}

.hh-nav-list {
  display: flex;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: clamp(14px, 1.55vw, 28px);
  list-style: none;
}

.hh-nav-list > li {
  position: relative;
}

.hh-nav-list > li > a {
  display: inline-flex;
  padding: 31px 0 29px;
  color: var(--hh-ink);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.hh-nav-list > li > a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--hh-gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--hh-ease);
}

.hh-nav-list > li > a:hover::after,
.hh-nav-list > li > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hh-nav-list .sub-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: -18px;
  display: none;
  min-width: 200px;
  padding: 10px;
  margin: 0;
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  border-radius: 12px;
  box-shadow: var(--hh-shadow-sm);
  list-style: none;
}

.hh-nav-list li:hover > .sub-menu,
.hh-nav-list li:focus-within > .sub-menu {
  display: block;
}

.hh-nav-list .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 0.82rem;
}

.hh-nav-list .sub-menu a:hover {
  background: var(--hh-sage-100);
}

.hh-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hh-language-switch {
  display: flex;
  padding-right: 12px;
  margin-right: 2px;
  align-items: center;
  gap: 5px;
  border-right: 1px solid var(--hh-border);
}

.hh-language-switch button {
  padding: 4px;
  color: var(--hh-muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 700;
}

.hh-language-switch button[aria-pressed="true"] {
  color: var(--hh-forest-800);
}

.hh-language-switch span {
  color: var(--hh-sage-200);
}

.hh-icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--hh-forest-900);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
  transition: background 160ms ease;
}

.hh-icon-button:hover {
  background: var(--hh-sage-100);
}

.hh-menu-toggle {
  display: none;
}

.hh-search-panel {
  position: absolute;
  right: 0;
  left: 0;
  padding: 28px 24px 32px;
  background: var(--hh-forest-900);
  box-shadow: var(--hh-shadow-lg);
}

.hh-search-panel[hidden],
.hh-mobile-nav[hidden] {
  display: none;
}

.hh-search-panel form {
  width: min(720px, 100%);
  margin-inline: auto;
}

.hh-search-panel label {
  display: block;
  margin-bottom: 8px;
  color: var(--hh-sage-200);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hh-search-field {
  display: flex;
  overflow: hidden;
  background: var(--hh-white);
  border-radius: 9px;
}

.hh-search-field input {
  min-width: 0;
  padding: 15px 18px;
  flex: 1;
  color: var(--hh-ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.hh-search-field button {
  display: inline-flex;
  padding: 12px 18px;
  align-items: center;
  gap: 8px;
  color: var(--hh-white);
  background: var(--hh-gold-500);
  border: 0;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.hh-mobile-nav {
  position: absolute;
  right: 0;
  left: 0;
  display: grid;
  padding: 12px 24px 28px;
  background: var(--hh-cream-50);
  border-bottom: 1px solid var(--hh-border);
  box-shadow: var(--hh-shadow-lg);
}

.hh-mobile-nav a {
  display: flex;
  min-height: 52px;
  padding: 12px 0;
  align-items: center;
  border-bottom: 1px solid var(--hh-border);
  font-family: var(--hh-serif);
  font-size: 1.05rem;
  font-weight: 700;
}

/* Hero */
.hh-main {
  display: block;
}

.hh-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 88px));
  overflow: hidden;
  background: var(--hh-cream-100);
}

.hh-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #f7f4eb 0%, rgba(247, 244, 235, 0.98) 27%, rgba(247, 244, 235, 0.78) 46%, rgba(247, 244, 235, 0.08) 72%);
}

.hh-hero-media {
  position: absolute;
  inset: 0;
}

.hh-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hh-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(760px, calc(100vh - 88px));
  padding-top: 72px;
  padding-bottom: 96px;
  align-items: center;
}

.hh-hero-copy {
  width: min(650px, 54%);
}

.hh-hero-copy h1 {
  margin: 0;
  color: var(--hh-forest-950);
  font-family: var(--hh-serif);
  font-size: clamp(2.7rem, 4.7vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.28;
}

.hh-hero-copy h1 span {
  display: block;
}

.hh-hero-copy h1 span:last-child {
  color: var(--hh-forest-700);
}

.hh-hero-lead {
  max-width: 545px;
  margin: 26px 0 0;
  color: #435149;
  font-size: clamp(0.94rem, 1.3vw, 1.07rem);
  font-weight: 520;
  letter-spacing: 0.045em;
  line-height: 2;
}

.hh-hero-actions {
  display: flex;
  margin-top: 36px;
  align-items: center;
  gap: 24px;
}

.hh-button {
  display: inline-flex;
  min-height: 54px;
  padding: 14px 21px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  transition: color 240ms var(--hh-ease), background 240ms var(--hh-ease), transform 240ms var(--hh-ease), box-shadow 240ms var(--hh-ease);
}

.hh-button:hover {
  transform: translateY(-2px);
}

.hh-button--primary {
  color: var(--hh-white) !important;
  background: var(--hh-forest-900);
  box-shadow: 0 14px 28px rgba(23, 53, 42, 0.2);
}

.hh-button--primary:hover {
  background: var(--hh-forest-700);
  box-shadow: 0 18px 32px rgba(23, 53, 42, 0.26);
}

.hh-text-link {
  display: inline-flex;
  padding: 4px 0;
  align-items: center;
  gap: 8px;
  color: var(--hh-forest-800) !important;
  border-bottom: 1px solid rgba(33, 75, 59, 0.35);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: border-color 160ms ease, gap 200ms var(--hh-ease);
}

.hh-text-link:hover {
  gap: 13px;
  border-color: var(--hh-forest-800);
}

.hh-hero-notes {
  display: flex;
  padding: 30px 0 0;
  margin: 38px 0 0;
  gap: 0;
  border-top: 1px solid rgba(23, 53, 42, 0.17);
  list-style: none;
}

.hh-hero-notes li {
  display: flex;
  padding: 0 24px;
  flex-direction: column;
  border-left: 1px solid rgba(23, 53, 42, 0.17);
}

.hh-hero-notes li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hh-hero-notes strong {
  color: var(--hh-forest-800);
  font-family: Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.hh-hero-notes span {
  margin-top: 3px;
  color: var(--hh-muted);
  font-size: 0.65rem;
}

.hh-scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--hh-forest-900);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hh-scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 36px;
  overflow: hidden;
  background: rgba(23, 53, 42, 0.2);
}

.hh-scroll-cue i::after {
  position: absolute;
  top: -50%;
  width: 100%;
  height: 50%;
  content: "";
  background: var(--hh-forest-900);
  animation: hh-scroll-line 2.2s ease-in-out infinite;
}

@keyframes hh-scroll-line {
  0% { transform: translateY(0); }
  60%, 100% { transform: translateY(300%); }
}

/* Shared sections */
.hh-section {
  padding: clamp(84px, 9vw, 132px) 0;
}

.hh-section-heading {
  display: flex;
  margin-bottom: 44px;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.hh-section-heading--center {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 56px;
  margin-left: auto;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.hh-section-heading h2,
.hh-news-title h2,
.hh-cta-inner h2 {
  margin: 0;
  color: var(--hh-forest-950);
  font-family: var(--hh-serif);
  font-size: clamp(2rem, 3.3vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.hh-section-heading > p,
.hh-section-heading--center > p {
  max-width: 520px;
  margin: 0;
  color: var(--hh-muted);
  font-size: 0.9rem;
}

/* Map */
.hh-map-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(170, 137, 85, 0.08), transparent 29%),
    linear-gradient(180deg, var(--hh-cream-50), #f2f2e9);
}

.hh-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.hh-map-card {
  position: sticky;
  top: 116px;
  padding: clamp(20px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 53, 42, 0.1);
  border-radius: var(--hh-radius-lg);
  box-shadow: var(--hh-shadow-sm);
  backdrop-filter: blur(8px);
}

.hh-japan-map {
  width: 100%;
  height: auto;
  overflow: visible;
}

.hh-map-route {
  fill: none;
  stroke: rgba(23, 53, 42, 0.13);
  stroke-dasharray: 3 10;
  stroke-linecap: round;
  stroke-width: 2;
}

.hh-map-region {
  cursor: pointer;
  outline: none;
}

.hh-map-region path,
.hh-map-region circle {
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 4;
  transition: filter 180ms ease, opacity 180ms ease, transform 240ms var(--hh-ease);
  transform-box: fill-box;
  transform-origin: center;
}

.hh-map-region text {
  pointer-events: none;
  fill: var(--hh-white);
  font-family: var(--hh-sans);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-anchor: middle;
}

.hh-map-region--hokkaido path { fill: #6c8069; }
.hh-map-region--tohoku path { fill: #839175; }
.hh-map-region--kanto path { fill: #385f50; }
.hh-map-region--chubu path { fill: #4f705d; }
.hh-map-region--kansai path { fill: #8c7654; }
.hh-map-region--chugoku path { fill: #9b895d; }
.hh-map-region--kyushu path,
.hh-map-region--kyushu circle { fill: #b09b75; }

.hh-map-region:hover path,
.hh-map-region:hover circle,
.hh-map-region:focus-visible path,
.hh-map-region:focus-visible circle,
.hh-map-region.is-active path,
.hh-map-region.is-active circle {
  filter: brightness(0.89) saturate(1.12);
  transform: translateY(-5px);
}

.hh-map-region:focus-visible {
  outline: none !important;
}

.hh-map-region:focus-visible path,
.hh-map-region:focus-visible circle {
  stroke: #e8b36d;
  stroke-width: 7;
}

.hh-map-hint {
  display: flex;
  margin: 12px 0 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--hh-muted);
  font-size: 0.72rem;
}

.hh-map-hint > span:first-child {
  display: grid;
  width: 20px;
  height: 20px;
  color: var(--hh-white);
  background: var(--hh-forest-800);
  border-radius: 50%;
  font-size: 0.8rem;
  place-items: center;
}

.hh-prefecture-panel {
  padding: clamp(24px, 3vw, 38px);
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  border-radius: var(--hh-radius-lg);
  box-shadow: var(--hh-shadow-sm);
  scroll-margin-top: 118px;
}

.hh-prefecture-panel-head {
  display: flex;
  margin-bottom: 24px;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.hh-prefecture-panel-head h3 {
  margin: 0;
  color: var(--hh-forest-950);
  font-family: var(--hh-serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
}

.hh-filter-status {
  color: var(--hh-muted);
  font-family: Georgia, serif;
  font-size: 0.74rem;
  white-space: nowrap;
}

.hh-region-filters {
  display: flex;
  padding-bottom: 16px;
  margin-bottom: 18px;
  gap: 8px;
  overflow-x: auto;
  border-bottom: 1px solid var(--hh-border);
  scrollbar-width: thin;
}

.hh-region-filters button {
  min-height: 38px;
  padding: 8px 13px;
  flex: 0 0 auto;
  color: var(--hh-muted);
  background: var(--hh-cream-50);
  border: 1px solid var(--hh-border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 680;
}

.hh-region-filters button:hover,
.hh-region-filters button.is-active {
  color: var(--hh-white);
  background: var(--hh-forest-800);
  border-color: var(--hh-forest-800);
}

.hh-prefecture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px 18px;
}

.hh-prefecture-grid a {
  display: flex;
  min-width: 0;
  min-height: 44px;
  padding: 7px 2px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid rgba(23, 53, 42, 0.09);
  font-size: 0.78rem;
  transition: color 160ms ease, padding 200ms var(--hh-ease);
}

.hh-prefecture-grid a:hover {
  padding-left: 5px;
  color: var(--hh-gold-500);
}

.hh-prefecture-grid a[hidden] {
  display: none;
}

.hh-prefecture-grid .hh-icon {
  width: 16px;
  opacity: 0.48;
}

/* Interactive 47-prefecture map */
.hh-region-filters--map {
  max-width: 100%;
  padding: 0 0 26px;
  margin: -8px 0 30px;
  justify-content: center;
  border: 0;
}

.hh-region-filters--map button {
  background: rgba(255,255,255,0.7);
  box-shadow: 0 3px 14px rgba(23,53,42,0.035);
}

.hh-map-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
}

.hh-map-stage {
  position: relative;
  min-width: 0;
  padding: clamp(18px, 3vw, 36px);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(23,53,42,0.1);
  border-radius: 28px;
  box-shadow: var(--hh-shadow-sm);
  backdrop-filter: blur(8px);
}

.hh-map-svg-wrap {
  width: min(100%, 720px);
  margin: 0 auto;
  touch-action: manipulation;
}

.hh-map-unavailable {
  padding: 90px 24px;
  color: var(--hh-muted);
  text-align: center;
}

.hh-japan-prefecture-map {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.hh-prefecture-shape {
  opacity: 0.72;
  stroke: rgba(255,255,255,0.94);
  stroke-linejoin: round;
  stroke-width: 6;
  cursor: pointer;
  outline: none;
  vector-effect: non-scaling-stroke;
  transition: opacity 180ms ease, filter 180ms ease, stroke 180ms ease, stroke-width 180ms ease;
}

.hh-prefecture-shape[data-region="hokkaido"] { fill: #718369; }
.hh-prefecture-shape[data-region="tohoku"] { fill: #899676; }
.hh-prefecture-shape[data-region="kanto"] { fill: #3e6958; }
.hh-prefecture-shape[data-region="chubu"] { fill: #587764; }
.hh-prefecture-shape[data-region="kansai"] { fill: #846f50; }
.hh-prefecture-shape[data-region="chugoku-shikoku"] { fill: #9b875d; }
.hh-prefecture-shape[data-region="kyushu-okinawa"] { fill: #ad9872; }

.hh-prefecture-shape.has-content {
  opacity: 1;
  filter: saturate(1.08) drop-shadow(0 7px 8px rgba(23,53,42,0.13));
}

.hh-prefecture-shape:hover,
.hh-prefecture-shape:focus-visible,
.hh-prefecture-shape.is-selected {
  opacity: 1;
  filter: brightness(0.88) saturate(1.18) drop-shadow(0 8px 10px rgba(23,53,42,0.18));
  stroke: #f1d09c;
  stroke-width: 9;
}

.hh-prefecture-shape.is-selected {
  fill: #bd8c4c;
  stroke: var(--hh-forest-950);
  stroke-width: 8;
}

.hh-prefecture-shape.is-dimmed {
  opacity: 0.16;
  filter: grayscale(0.35);
}

.hh-prefecture-shape.is-region-highlight {
  opacity: 1;
}

.hh-japan-prefecture-map #prefecture-borders {
  pointer-events: none;
  stroke: rgba(23,53,42,0.38);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.hh-map-tooltip {
  position: absolute;
  z-index: 6;
  min-width: 118px;
  padding: 10px 13px;
  color: var(--hh-white);
  background: rgba(17,43,34,0.96);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(17,43,34,0.23);
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, calc(-100% - 15px));
}

.hh-map-tooltip::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top-color: rgba(17,43,34,0.96);
  content: "";
  transform: translateX(-50%);
}

.hh-map-tooltip strong,
.hh-map-tooltip span {
  display: block;
}

.hh-map-tooltip strong {
  font-family: var(--hh-serif);
  font-size: 0.94rem;
}

.hh-map-tooltip span {
  margin-top: 2px;
  color: rgba(255,255,255,0.7);
  font-size: 0.67rem;
}

.hh-map-legend {
  display: flex;
  margin-top: 6px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--hh-muted);
  font-size: 0.67rem;
}

.hh-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hh-map-legend i {
  width: 9px;
  height: 9px;
  background: var(--hh-forest-700);
  border-radius: 50%;
}

.hh-map-legend .is-empty i {
  background: rgba(23,53,42,0.22);
}

.hh-map-inspector {
  position: sticky;
  top: 112px;
  display: grid;
  min-height: 620px;
  padding: clamp(28px, 3.3vw, 46px);
  color: var(--hh-white);
  background:
    radial-gradient(circle at 92% 8%, rgba(179,157,111,0.2), transparent 28%),
    linear-gradient(145deg, var(--hh-forest-800), var(--hh-forest-950));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  box-shadow: 0 25px 65px rgba(17,43,34,0.19);
  overflow: hidden;
  scroll-margin-top: 112px;
}

.hh-map-inspector::after {
  position: absolute;
  right: -60px;
  bottom: -75px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255,255,255,0.018), 0 0 0 72px rgba(255,255,255,0.012);
  content: "";
  pointer-events: none;
}

.hh-map-inspector-empty {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: auto;
  text-align: center;
}

.hh-map-pin-large {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--hh-sand-300);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;
  place-items: center;
}

.hh-map-pin-large .hh-icon {
  width: 26px;
  height: 26px;
}

.hh-map-inspector-empty h3,
.hh-map-inspector-head h3 {
  margin: 10px 0 12px;
  color: var(--hh-white);
  font-family: var(--hh-serif);
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.36;
}

.hh-map-inspector-empty > p:last-child,
.hh-map-inspector-head > p:last-child {
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-size: 0.79rem;
  line-height: 1.9;
}

.hh-map-inspector-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hh-selected-region {
  display: inline-flex;
  min-height: 28px;
  padding: 5px 10px;
  align-items: center;
  color: var(--hh-sand-300);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.hh-selected-english {
  margin: 28px 0 0;
  color: var(--hh-sand-300);
  font-family: Georgia, serif;
  font-size: 0.82rem;
  font-style: italic;
}

.hh-map-inspector-head h3 {
  margin-top: 3px;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
}

.hh-map-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
  gap: 10px;
}

.hh-map-stat-grid > a {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 116px;
  padding: 16px;
  grid-template-columns: 30px 1fr 14px;
  align-items: center;
  gap: 10px;
  color: var(--hh-white) !important;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 17px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms var(--hh-ease);
}

.hh-map-stat-grid > a:hover,
.hh-map-stat-grid > a:focus-visible {
  background: rgba(255,255,255,0.13);
  border-color: rgba(241,208,156,0.48);
  transform: translateY(-2px);
}

.hh-map-stat-grid > a.is-empty {
  opacity: 0.56;
}

.hh-map-stat-icon {
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--hh-sand-300);
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  place-items: center;
}

.hh-map-stat-icon .hh-icon {
  width: 16px;
  height: 16px;
}

.hh-map-stat-grid > a > span:nth-child(2) {
  min-width: 0;
}

.hh-map-stat-grid strong,
.hh-map-stat-grid small {
  display: block;
}

.hh-map-stat-grid strong {
  font-family: var(--hh-serif);
  font-size: 1.55rem;
  line-height: 1;
}

.hh-map-stat-grid small {
  margin-top: 7px;
  color: rgba(255,255,255,0.67);
  font-size: 0.61rem;
  line-height: 1.35;
}

.hh-map-stat-grid > a > .hh-icon {
  width: 14px;
  opacity: 0.45;
}

.hh-map-area-link {
  width: 100%;
  margin-top: 18px;
  color: var(--hh-forest-950) !important;
  background: var(--hh-white) !important;
}

.hh-map-area-link:hover {
  background: var(--hh-sand-300) !important;
}

.hh-prefecture-fallback {
  margin-top: 28px;
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(23,53,42,0.1);
  border-radius: 18px;
}

.hh-prefecture-fallback summary {
  display: flex;
  min-height: 60px;
  padding: 15px 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--hh-forest-800);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 700;
  list-style: none;
}

.hh-prefecture-fallback summary::-webkit-details-marker {
  display: none;
}

.hh-prefecture-fallback summary .hh-icon {
  width: 15px;
  transition: transform 180ms ease;
  transform: rotate(90deg);
}

.hh-prefecture-fallback[open] summary .hh-icon {
  transform: rotate(-90deg);
}

.hh-prefecture-fallback .hh-prefecture-grid {
  padding: 0 24px 24px;
}

/* Purpose cards */
.hh-purpose-section {
  position: relative;
  background: var(--hh-forest-950);
  color: var(--hh-white);
}

.hh-purpose-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(255,255,255,0.025) 58% 59%, transparent 59%),
    radial-gradient(circle at 88% 10%, rgba(163, 173, 136, 0.13), transparent 32%);
  pointer-events: none;
}

.hh-purpose-section .hh-shell {
  position: relative;
}

.hh-purpose-section .hh-section-heading h2,
.hh-purpose-section .hh-section-heading > p {
  color: var(--hh-white);
}

.hh-purpose-section .hh-section-heading > p {
  opacity: 0.64;
}

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

.hh-purpose-card {
  position: relative;
  display: flex;
  min-height: 380px;
  padding: 30px 26px;
  overflow: hidden;
  flex-direction: column;
  color: var(--hh-white) !important;
  background: #294a3e;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--hh-radius-md);
  isolation: isolate;
  transition: transform 280ms var(--hh-ease), border-color 200ms ease, box-shadow 280ms var(--hh-ease);
}

.hh-purpose-card::before,
.hh-purpose-card::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
}

.hh-purpose-card::before {
  top: -70px;
  right: -75px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hh-purpose-card::after {
  right: -20px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  background: rgba(255, 255, 255, 0.035);
}

.hh-purpose-card--facility { background: #5f6d4f; }
.hh-purpose-card--market { background: #695b42; }
.hh-purpose-card--travel { background: #3c5f64; }

.hh-purpose-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-7px);
}

.hh-purpose-number {
  position: absolute;
  top: 22px;
  right: 23px;
  color: rgba(255, 255, 255, 0.48);
  font-family: Georgia, serif;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
}

.hh-purpose-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: auto;
  color: var(--hh-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  place-items: center;
}

.hh-purpose-icon .hh-icon {
  width: 31px;
  height: 31px;
}

.hh-purpose-card h3 {
  margin: 42px 0 15px;
  font-family: var(--hh-serif);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hh-purpose-card p {
  min-height: 5.4em;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.85;
}

.hh-card-link {
  display: flex;
  padding-top: 20px;
  margin-top: 18px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  font-weight: 700;
}

.hh-card-link .hh-icon {
  transition: transform 220ms var(--hh-ease);
}

.hh-purpose-card:hover .hh-card-link .hh-icon {
  transform: translateX(5px);
}

/* Latest articles */
.hh-latest-section {
  background: var(--hh-white);
}

.hh-article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.hh-article-card {
  min-width: 0;
}

.hh-article-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--hh-sage-100);
  border-radius: var(--hh-radius-md);
}

.hh-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--hh-ease);
}

.hh-article-card:hover .hh-article-image img {
  transform: scale(1.045);
}

.hh-article-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  color: var(--hh-olive-600);
  background:
    linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.5) 50%),
    var(--hh-sage-100);
  place-items: center;
}

.hh-article-placeholder .hh-icon {
  width: 48px;
  height: 48px;
  opacity: 0.68;
}

.hh-article-content {
  padding: 18px 4px 0;
}

.hh-article-meta {
  display: flex;
  margin-bottom: 11px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--hh-muted);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.hh-article-meta span {
  color: var(--hh-gold-500);
  font-weight: 750;
  text-transform: uppercase;
}

.hh-article-card h3 {
  margin: 0;
  color: var(--hh-forest-950);
  font-family: var(--hh-serif);
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.55;
}

.hh-article-card h3 a:hover {
  color: var(--hh-forest-700);
}

.hh-article-card p {
  display: -webkit-box;
  margin: 11px 0 0;
  overflow: hidden;
  color: var(--hh-muted);
  font-size: 0.75rem;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hh-empty-state {
  display: grid;
  min-height: 310px;
  padding: 52px 24px;
  text-align: center;
  background: var(--hh-cream-50);
  border: 1px dashed rgba(23, 53, 42, 0.22);
  border-radius: var(--hh-radius-lg);
  place-items: center;
}

.hh-empty-state > span {
  display: grid;
  width: 70px;
  height: 70px;
  color: var(--hh-forest-700);
  background: var(--hh-sage-100);
  border-radius: 50%;
  place-items: center;
}

.hh-empty-state h3 {
  margin: 18px 0 5px;
  font-family: var(--hh-serif);
  font-size: 1.5rem;
}

.hh-empty-state p {
  margin: 0 0 18px;
  color: var(--hh-muted);
}

/* News */
.hh-news-section {
  padding: 68px 0;
  background: var(--hh-cream-100);
  border-top: 1px solid var(--hh-border);
  border-bottom: 1px solid var(--hh-border);
}

.hh-news-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 64px;
}

.hh-news-title h2 {
  font-size: 2rem;
}

.hh-news-list {
  border-top: 1px solid rgba(23, 53, 42, 0.22);
}

.hh-news-item {
  display: flex;
  min-height: 66px;
  padding: 14px 8px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(23, 53, 42, 0.14);
}

.hh-news-item p {
  margin: 0;
  font-size: 0.82rem;
}

.hh-news-item--empty p {
  color: var(--hh-muted);
}

.hh-news-icon {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--hh-forest-700);
  background: rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  place-items: center;
}

.hh-news-icon .hh-icon {
  width: 15px;
}

/* Feature cards */
.hh-feature-section {
  background: var(--hh-cream-50);
}

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

.hh-feature-card {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
  flex-direction: column;
  justify-content: end;
  color: var(--hh-white) !important;
  background: var(--hh-forest-800);
  border-radius: var(--hh-radius-md);
  isolation: isolate;
  transition: transform 260ms var(--hh-ease), box-shadow 260ms var(--hh-ease);
}

.hh-feature-card::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 76% 25%, rgba(255,255,255,0.18), transparent 19%),
    linear-gradient(135deg, transparent 0 52%, rgba(255,255,255,0.08) 52% 53%, transparent 53%);
  transition: transform 500ms var(--hh-ease);
}

.hh-feature-card::after {
  position: absolute;
  z-index: -1;
  top: 30px;
  right: -52px;
  width: 170px;
  height: 170px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.hh-feature-card--beginner { background: #8c7b5a; }
.hh-feature-card--journey { background: #496a6c; }
.hh-feature-card--future { background: #5c634e; }

.hh-feature-card:hover {
  box-shadow: var(--hh-shadow-lg);
  transform: translateY(-6px);
}

.hh-feature-card:hover::before {
  transform: scale(1.08);
}

.hh-feature-index {
  position: absolute;
  top: 22px;
  left: 24px;
  color: rgba(255,255,255,0.52);
  font-family: Georgia, serif;
  font-size: 0.75rem;
}

.hh-feature-eyebrow {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-family: Georgia, serif;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
}

.hh-feature-card h3 {
  max-width: 245px;
  margin: 0;
  font-family: var(--hh-serif);
  font-size: clamp(1.2rem, 1.9vw, 1.65rem);
  font-weight: 600;
  line-height: 1.55;
}

.hh-feature-arrow {
  position: absolute;
  right: 24px;
  bottom: 26px;
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--hh-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  place-items: center;
}

.hh-feature-arrow .hh-icon {
  width: 17px;
}

/* Optional editor content */
.hh-editor-content {
  padding-top: 0;
  background: var(--hh-cream-50);
}

.hh-prose {
  max-width: 900px;
  padding: 44px;
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  border-radius: var(--hh-radius-md);
}

/* CTA */
.hh-cta-section {
  position: relative;
  padding: clamp(78px, 8vw, 112px) 0;
  overflow: hidden;
  color: var(--hh-white);
  background: var(--hh-forest-800);
}

.hh-cta-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, rgba(255,255,255,0.05), transparent 46%);
}

.hh-cta-decoration {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.hh-cta-decoration--one {
  top: -190px;
  right: -60px;
  width: 430px;
  height: 430px;
}

.hh-cta-decoration--two {
  right: 180px;
  bottom: -250px;
  width: 390px;
  height: 390px;
}

.hh-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hh-cta-inner > div {
  max-width: 740px;
}

.hh-cta-inner .hh-eyebrow {
  color: var(--hh-sand-300);
}

.hh-cta-inner h2 {
  color: var(--hh-white);
}

.hh-cta-inner p:not(.hh-eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hh-button--light {
  min-width: 220px;
  color: var(--hh-forest-900) !important;
  background: var(--hh-white);
  box-shadow: 0 14px 30px rgba(7, 24, 18, 0.2);
}

.hh-button--light:hover {
  color: var(--hh-white) !important;
  background: var(--hh-gold-500);
}

/* Footer */
.hh-site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--hh-forest-950);
}

.hh-footer-inner {
  display: grid;
  width: min(calc(100% - 48px), var(--hh-shell));
  padding: 76px 0 64px;
  margin-inline: auto;
  grid-template-columns: minmax(280px, 1fr) 1.65fr;
  gap: clamp(54px, 8vw, 120px);
}

.hh-brand--footer .hh-brand-mark {
  color: var(--hh-forest-950);
  background: var(--hh-sage-200);
}

.hh-brand--footer .hh-brand-copy strong {
  color: var(--hh-white);
}

.hh-brand--footer .hh-brand-copy small {
  color: rgba(255, 255, 255, 0.5);
}

.hh-footer-brand > p {
  max-width: 380px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.77rem;
  line-height: 1.9;
}

.hh-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

.hh-footer-nav h2 {
  padding-bottom: 13px;
  margin: 0 0 8px;
  color: var(--hh-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-family: var(--hh-serif);
  font-size: 0.98rem;
  font-weight: 600;
}

.hh-footer-nav a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.72rem;
  transition: color 160ms ease, transform 160ms ease;
}

.hh-footer-nav a:hover {
  color: var(--hh-white) !important;
  transform: translateX(3px);
}

.hh-footer-bottom {
  display: flex;
  min-height: 68px;
  padding: 14px max(24px, calc((100% - var(--hh-shell)) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.65rem;
  letter-spacing: 0.035em;
}

.hh-footer-bottom p {
  margin: 0;
}

.hh-back-to-top {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--hh-white) !important;
  background: var(--hh-forest-800);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: var(--hh-shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hh-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hh-back-to-top .hh-icon {
  width: 20px;
}

/* Responsive */
@media (max-width: 1180px) {
  .hh-desktop-nav {
    display: none;
  }

  .hh-header-actions {
    margin-left: auto;
  }

  .hh-menu-toggle {
    display: grid;
  }

  .hh-hero-copy {
    width: min(640px, 64%);
  }

  .hh-purpose-grid,
  .hh-article-grid,
  .hh-feature-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hh-purpose-card {
    min-height: 335px;
  }
}

@media (max-width: 960px) {
  .hh-map-layout {
    grid-template-columns: 1fr;
  }

  .hh-map-experience {
    grid-template-columns: 1fr;
  }

  .hh-map-stage {
    max-width: 760px;
    margin-inline: auto;
  }

  .hh-map-inspector {
    position: relative;
    top: auto;
    min-height: 0;
    scroll-margin-top: 94px;
  }

  .hh-map-inspector-empty {
    padding-block: 28px;
  }

  .hh-map-card {
    position: static;
    max-width: 700px;
    margin-inline: auto;
  }

  .hh-prefecture-panel {
    scroll-margin-top: 100px;
  }

  .hh-hero::after {
    background: linear-gradient(90deg, #f7f4eb 0%, rgba(247, 244, 235, 0.94) 43%, rgba(247, 244, 235, 0.35) 73%);
  }

  .hh-news-layout {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 36px;
  }

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

@media (max-width: 782px) {
  body.admin-bar .hh-site-header {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .hh-shell,
  .hh-header-inner,
  .hh-footer-inner {
    width: min(calc(100% - 32px), var(--hh-shell));
  }

  .hh-header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .hh-brand-mark {
    width: 37px;
    height: 37px;
  }

  .hh-brand-copy strong {
    font-size: 0.84rem;
  }

  .hh-brand-copy small {
    display: none;
  }

  .hh-language-switch {
    padding-right: 5px;
    border-right: 0;
  }

  .hh-language-switch button {
    font-size: 0.62rem;
  }

  .hh-icon-button {
    width: 38px;
    height: 38px;
  }

  .hh-hero,
  .hh-hero-inner {
    min-height: calc(100svh - 72px);
  }

  .hh-hero::after {
    background: linear-gradient(180deg, rgba(16, 39, 31, 0.2), rgba(16, 39, 31, 0.84) 76%, #10271f 100%);
  }

  .hh-hero-media img {
    object-position: 65% center;
  }

  .hh-hero-inner {
    padding-top: 47vh;
    padding-bottom: 110px;
    align-items: end;
  }

  .hh-hero-copy {
    width: 100%;
  }

  .hh-hero-copy .hh-eyebrow {
    color: var(--hh-sand-300);
  }

  .hh-hero-copy h1,
  .hh-hero-copy h1 span:last-child {
    color: var(--hh-white);
  }

  .hh-hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.6rem);
    line-height: 1.32;
    text-shadow: 0 2px 22px rgba(0,0,0,0.15);
  }

  .hh-hero-lead {
    margin-top: 17px;
    color: rgba(255,255,255,0.78);
    font-size: 0.86rem;
    line-height: 1.9;
  }

  .hh-hero-actions {
    margin-top: 25px;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .hh-hero .hh-button--primary {
    color: var(--hh-forest-950) !important;
    background: var(--hh-white);
  }

  .hh-hero .hh-text-link {
    color: var(--hh-white) !important;
    border-color: rgba(255,255,255,0.4);
  }

  .hh-hero-notes {
    display: none;
  }

  .hh-scroll-cue {
    right: 16px;
    bottom: 24px;
    left: auto;
    color: var(--hh-white);
    transform: none;
  }

  .hh-scroll-cue i {
    background: rgba(255,255,255,0.26);
  }

  .hh-scroll-cue i::after {
    background: var(--hh-white);
  }

  .hh-section-heading {
    margin-bottom: 32px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hh-section-heading--center {
    align-items: center;
    text-align: center;
  }

  .hh-map-layout {
    gap: 20px;
  }

  .hh-region-filters--map {
    margin-inline: -16px;
    padding-inline: 16px;
    justify-content: flex-start;
  }

  .hh-map-experience {
    gap: 16px;
  }

  .hh-map-stage,
  .hh-map-inspector {
    border-radius: 20px;
  }

  .hh-map-stage {
    padding: 13px 8px 18px;
  }

  .hh-map-legend {
    gap: 12px;
    font-size: 0.61rem;
  }

  .hh-map-inspector {
    padding: 28px 20px;
  }

  .hh-map-stat-grid {
    margin-top: 24px;
  }

  .hh-map-stat-grid > a {
    min-height: 102px;
    padding: 13px;
    grid-template-columns: 26px 1fr 12px;
    gap: 8px;
  }

  .hh-map-stat-icon {
    width: 26px;
    height: 26px;
  }

  .hh-map-stat-grid strong {
    font-size: 1.35rem;
  }

  .hh-prefecture-fallback .hh-prefecture-grid {
    padding-inline: 16px;
  }

  .hh-map-card {
    padding: 10px;
    border-radius: 20px;
  }

  .hh-prefecture-panel {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .hh-prefecture-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hh-prefecture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 15px;
  }

  .hh-purpose-grid,
  .hh-article-grid,
  .hh-feature-track {
    display: flex;
    width: calc(100% + 16px);
    padding: 0 16px 18px 0;
    gap: 14px;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .hh-purpose-card,
  .hh-article-card,
  .hh-feature-card {
    width: min(82vw, 335px);
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .hh-purpose-card {
    min-height: 350px;
  }

  .hh-article-card {
    padding: 0 0 14px;
  }

  .hh-feature-card {
    min-height: 290px;
  }

  .hh-news-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hh-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hh-footer-nav > div:last-child {
    grid-column: 1 / -1;
  }

  .hh-footer-bottom {
    padding: 22px 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .hh-site-header .hh-language-switch span {
    display: none;
  }

  .hh-site-header .hh-language-switch {
    gap: 0;
  }

  .hh-header-actions {
    gap: 0;
  }

  .hh-brand-mark {
    width: 34px;
    height: 34px;
  }

  .hh-brand-copy strong {
    font-size: 0.75rem;
    letter-spacing: 0.075em;
  }

  .hh-hero-inner {
    padding-top: 43vh;
  }

  .hh-section {
    padding: 76px 0;
  }

  .hh-section-heading h2,
  .hh-news-title h2,
  .hh-cta-inner h2 {
    font-size: 2rem;
  }

  .hh-map-region text {
    font-size: 17px;
  }

  .hh-map-stat-grid {
    grid-template-columns: 1fr;
  }

  .hh-map-stat-grid > a {
    min-height: 82px;
  }

  .hh-map-tooltip {
    display: none !important;
  }

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

  .hh-prefecture-grid a {
    font-size: 0.74rem;
  }

  .hh-cta-section {
    padding: 72px 0;
  }

  .hh-button--light {
    width: 100%;
  }

  .hh-footer-inner {
    padding: 58px 0 48px;
  }

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

  .hh-footer-nav > div:last-child {
    grid-column: auto;
  }

  .hh-back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hh-homepage *,
  .hh-homepage *::before,
  .hh-homepage *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
