.page-home {
  --home-hero-radius: 36px;
  overflow: hidden;
}

.page-home .section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.page-home .section-heading--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  max-width: none;
}

.page-home .hero-breadcrumb {
  margin-bottom: 14px;
  font-size: 13px;
}

.page-home .hero-breadcrumb a {
  color: rgba(247, 244, 236, 0.72);
  text-decoration: none;
  transition: color var(--t-fast);
}

.page-home .hero-breadcrumb a:hover {
  color: var(--color-blue);
}

.page-home .hero-breadcrumb .breadcrumb-current {
  color: rgba(247, 244, 236, 0.9);
}

.page-home .home-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(560px, 88vh, 820px);
  border-radius: 0 0 var(--home-hero-radius) var(--home-hero-radius);
  overflow: hidden;
  background: var(--color-ink);
  isolation: isolate;
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-home .hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(30, 38, 34, 0.92) 0%, rgba(30, 38, 34, 0.66) 45%, rgba(57, 67, 62, 0.18) 100%);
}

.page-home .hero-slice {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 38%;
  z-index: 0;
  background: linear-gradient(115deg, transparent 28%, rgba(42, 166, 224, 0.10) 28%, rgba(67, 106, 90, 0.18) 70%, rgba(230, 126, 48, 0.12) 70%);
  clip-path: polygon(100% 0, 100% 100%, 28% 100%);
  pointer-events: none;
}

.page-home .hero-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-home .hero-lines path {
  fill: none;
  stroke-linecap: round;
  animation: pageHome-lineFlow 14s linear infinite;
}

.page-home .line-main {
  stroke: rgba(247, 244, 236, 0.36);
  stroke-width: 2;
  stroke-dasharray: 4 12;
}

.page-home .line-dash {
  stroke: rgba(42, 166, 224, 0.32);
  stroke-width: 1.5;
  stroke-dasharray: 2 16;
}

@keyframes pageHome-lineFlow {
  to {
    stroke-dashoffset: -1200;
  }
}

.page-home .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 28px;
  color: var(--color-cream);
}

.page-home .hero-copy {
  max-width: 760px;
}

.page-home .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(247, 244, 236, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(30, 38, 34, 0.24);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.page-home .hero-copy h1 {
  margin: 16px 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 5.4vw, 68px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-cream);
}

.page-home .hero-lead {
  margin: 0 0 24px;
  max-width: 720px;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.85;
  color: rgba(247, 244, 236, 0.86);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .hero-note {
  margin: 20px 0 0;
  font-size: 13px;
  color: rgba(247, 244, 236, 0.6);
}

.page-home .hero-note a {
  color: rgba(247, 244, 236, 0.86);
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 244, 236, 0.32);
  transition: color var(--t-fast), border-color var(--t-fast);
}

.page-home .hero-note a:hover {
  color: var(--color-blue);
  border-bottom-color: var(--color-blue);
}

.page-home .hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(247, 244, 236, 0.16);
  border-top: 1px solid rgba(247, 244, 236, 0.14);
}

.page-home .hero-stats .stat {
  background: rgba(30, 38, 34, 0.76);
  backdrop-filter: blur(8px);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.page-home .hero-stats .stat-value {
  font-family: var(--font-data);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1;
}

.page-home .hero-stats .stat-label {
  font-size: 12px;
  color: rgba(247, 244, 236, 0.72);
}

.page-home .section {
  position: relative;
}

.page-home .home-modules,
.page-home .home-guide,
.page-home .home-venues,
.page-home .home-news {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.page-home .section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-moss);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(67, 106, 90, 0.10);
  margin-bottom: 12px;
}

.page-home .section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--color-ink);
}

.page-home .section-lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-stone);
  max-width: 720px;
  margin: 0;
}

.page-home .home-modules {
  padding-top: clamp(56px, 8vw, 100px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.page-home .home-modules::before {
  content: '';
  position: absolute;
  top: 24px;
  right: 4%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(42, 166, 224, 0.20), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .modules-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.page-home .module-card {
  border-radius: var(--radius-lg);
  background: var(--color-cream);
  border: 1px solid rgba(67, 106, 90, 0.20);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.page-home .module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-home .module-chart {
  padding: 24px 24px 0;
  display: flex;
  justify-content: center;
}

.page-home .module-chart svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 220px;
  transition: transform var(--t-slow);
}

.page-home .module-card:hover .module-chart svg {
  transform: scale(1.04);
}

.page-home .module-body {
  padding: 14px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.page-home .module-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  line-height: 1.35;
  margin: 8px 0 0;
  color: var(--color-ink);
}

.page-home .module-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-stone);
  margin: 0;
}

.page-home .module-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), color var(--t-fast);
}

.page-home .module-link:hover {
  border-bottom-color: var(--color-blue);
}

.page-home .legend-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}

.page-home .legend-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-wash);
}

.page-home .legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
}

.page-home .bar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  color: var(--color-stone);
  margin-top: 12px;
}

.page-home .bar-legend .legend-dot {
  margin-right: 4px;
}

.page-home .module-card--feature {
  border-radius: var(--radius-lg);
}

.page-home .module-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
}

.page-home .feature-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--color-wash);
}

.page-home .feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--color-moss);
  transform: rotate(45deg);
}

.page-home .home-guide {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-home .guide-visual {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg);
  transition: transform var(--t-slow);
}

.page-home .guide-visual:hover {
  transform: rotate(0deg) scale(1.02);
}

.page-home .guide-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .guide-content {
  padding: 8px 0;
}

.page-home .guide-content .section-title {
  margin-top: 4px;
}

.page-home .guide-content > p:not(.section-kicker) {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-stone);
  margin: 0 0 16px;
}

.page-home .guide-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .guide-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-wash);
}

.page-home .guide-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-moss);
  color: var(--color-cream);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-home .guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .home-venues {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(67, 106, 90, 0.10), rgba(247, 244, 236, 0.85) 70%);
  border-radius: var(--radius-lg);
  margin-bottom: clamp(20px, 3vw, 48px);
}

.page-home .venues-content .section-title {
  margin-top: 4px;
}

.page-home .venues-content > p:not(.section-kicker) {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-stone);
  margin: 0 0 18px;
}

.page-home .venues-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 0 0 24px;
}

.page-home .venues-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-moss);
}

.page-home .venues-meta-item .status-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 0 5px rgba(230, 126, 48, 0.18);
  flex: none;
}

.page-home .venues-meta-item .venues-meta-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 0 5px rgba(42, 166, 224, 0.18);
  flex: none;
}

.page-home .venues-visual {
  max-width: 340px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: rotate(1.2deg);
  transition: transform var(--t-slow);
  margin-left: auto;
  margin-right: auto;
}

.page-home .venues-visual:hover {
  transform: rotate(0deg) scale(1.02);
}

.page-home .venues-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-news {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(64px, 8vw, 100px);
}

.page-home .news-heading-row .section-title {
  margin-bottom: 4px;
}

.page-home .news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .news-item {
  background: var(--color-cream);
  border: 1px solid rgba(67, 106, 90, 0.16);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.page-home .news-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-home .news-item h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  margin: 2px 0 0;
  color: var(--color-ink);
}

.page-home .news-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-stone);
  margin: 0;
}

.page-home .news-item a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
}

.page-home .news-item a:hover {
  border-bottom-color: var(--color-blue);
}

.page-home .donut-label {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  fill: var(--color-ink);
}

.page-home .donut-label-small {
  font-family: var(--font-body);
  font-size: 11px;
  fill: var(--color-stone);
}

.page-home .chart-axis {
  stroke: rgba(30, 38, 34, 0.16);
  stroke-width: 1.5;
}

.page-home .chart-group rect {
  transition: transform var(--t-fast), opacity var(--t-fast);
  transform-origin: 50% 100%;
}

.page-home .chart-group:hover rect {
  transform: scaleY(1.05);
  opacity: 1;
}

.page-home .chart-label {
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.page-home .chart-axis-label {
  font-size: 11px;
  fill: var(--color-stone);
  font-family: var(--font-body);
}

@media (min-width: 768px) {
  .page-home .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .hero-stats .stat {
    padding: 22px 28px;
  }

  .page-home .home-venues,
  .page-home .home-guide {
    gap: 40px;
  }

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

@media (min-width: 992px) {
  .page-home .modules-layout {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: stretch;
  }

  .page-home .module-card--feature {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .page-home .module-img {
    width: 44%;
    flex: none;
  }

  .page-home .module-card--feature .module-img img {
    max-height: none;
  }

  .page-home .module-card--feature .module-body {
    padding: 32px;
  }

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

  .page-home .home-venues {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (min-width: 1200px) {
  .page-home .news-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
