:root {
  --bg: #0b100d;
  --bg-2: #111914;
  --surface: rgba(16, 23, 18, 0.76);
  --surface-strong: rgba(18, 27, 21, 0.94);
  --surface-deep: #09110c;
  --text: #eef8f0;
  --text-2: #9eb1a3;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #8de567;
  --accent-2: #43c977;
  --accent-3: rgba(141, 229, 103, 0.12);
  --ink: #e9fff2;
  --radius: 30px;
  --radius-lg: 40px;
  --radius-sm: 20px;
  --max: 1240px;
  --header-h: 88px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at 10% 0, rgba(141, 229, 103, 0.16), transparent 22%), radial-gradient(circle at 100% 18%, rgba(67, 201, 119, 0.1), transparent 24%), linear-gradient(180deg, #071009 0, #0b100d 40%, #111915 100%);
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  z-index: -1;
  opacity: .25
}

body::before {
  left: -16vw;
  top: -14vw;
  background: rgba(127, 211, 93, 0.55)
}

body::after {
  right: -14vw;
  top: 10vh;
  background: rgba(114, 197, 162, 0.4)
}

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

img {
  display: block;
  max-width: 100%
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 251, 249, 0.68);
  backdrop-filter: blur(18px) saturate(130%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 0 rgba(16, 21, 17, 0.05)
}

.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: .01em
}

@keyframes brandSweep {

  0%,
  18% {
    transform: translateX(-120%)
  }

  28%,
  100% {
    transform: translateX(120%)
  }
}

.brand-copy {
  display: flex;
  flex-direction: column
}

.brand-copy small {
  color: var(--text-2);
  font-size: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap
}

.nav a {
  position: relative;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--text-2);
  font-weight: 600;
  transition: transform .25s ease, color .25s ease, background .25s ease, box-shadow .25s ease
}

.nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scalex(0);
  transform-origin: center;
  transition: transform .25s ease
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: var(--shadow-soft)
}

.nav a:hover::after,
.nav a.active::after {
  transform: scalex(1)
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  box-shadow: var(--shadow-soft)
}

.hero {
  padding: 56px 0 48px;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
  gap: 32px;
  align-items: center
}

.hero-copy {
  position: relative;
  padding-block: 26px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(127, 211, 93, 0.12)
}

.hero-title {
  margin: 24px 0 18px;
  font-size: clamp(3rem, 8vw, 6.1rem);
  line-height: .98;
  letter-spacing: -.07em;
  font-weight: 800;
  max-width: 8.4ch;
  text-wrap: balance
}

.hero-title .accent {
  display: inline-block;
  background: linear-gradient(135deg, #2b5a3c 0, #5dbe63 55%, #7fd35d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero-text {
  margin: 0;
  max-width: 37ch;
  color: var(--text-2);
  font-size: 1.05rem
}

.hero-actions,
.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px
}

.btn-main,
.btn-sub {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease
}

.btn-main {
  background: linear-gradient(135deg, #10311d 0, #123a28 32%, #1f774b 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(18, 58, 40, 0.24)
}

.btn-main:hover {
  transform: translatey(-2px);
  box-shadow: 0 20px 44px rgba(18, 58, 40, 0.3)
}

.btn-sub {
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  border: 1px solid rgba(16, 21, 17, 0.08);
  box-shadow: var(--shadow-soft)
}

.btn-sub:hover {
  transform: translatey(-2px)
}

.hero-metrics {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px
}

.metric {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft)
}

.metric strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 8px
}

.metric span {
  display: block;
  color: var(--text-2);
  font-size: .88rem;
  line-height: 1.55
}

.hero-side {
  position: relative;
  min-height: 720px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  background: radial-gradient(circle at 14% 82%, rgba(127, 211, 93, 0.18), transparent 22%), linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0, rgba(239, 245, 241, 0.96) 100%)
}

.hero-side::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 36%);
  pointer-events: none;
  z-index: 1
}

.hero-side .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: .55;
  pointer-events: none
}

.hero-side .orb-1 {
  width: 160px;
  height: 160px;
  right: 4%;
  top: 8%;
  background: rgba(127, 211, 93, 0.38)
}

.hero-side .orb-2 {
  width: 190px;
  height: 190px;
  left: -5%;
  bottom: 10%;
  background: rgba(55, 184, 112, 0.16)
}

.hero-image-frame {
  position: absolute;
  inset: 18px 18px 126px 18px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f3f8f5);
  border: 1px solid rgba(16, 21, 17, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s ease
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 18px;
  filter: contrast(1.03) saturate(1.02)
}

.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 24px 24px 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  z-index: 2
}

.hero-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: -.02em
}

.hero-card p {
  margin: 0;
  color: var(--text-2);
  font-size: .95rem
}

.date-glow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  margin-left: auto !important;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(240, 250, 240, 0.92);
  border: 1px solid rgba(127, 211, 93, 0.22);
  color: #16432a;
  font-weight: 700;
  font-size: .86rem;
  overflow: hidden;
  position: relative
}

.date-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.8) 52%, transparent 72%);
  transform: translatex(-130%);
  animation: shimmer 3.8s ease-in-out infinite
}

@keyframes shimmer {

  0%,
  18% {
    transform: translateX(-130%)
  }

  46%,
  100% {
    transform: translateX(130%)
  }
}

.section {
  padding: 92px 0
}

.section.compact {
  padding: 72px 0
}

.section-shell {
  position: relative;
  padding: 38px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft)
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px
}

.section-head h2 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 12px;
}

.section-head p {
  margin: 0;
  max-width: 64ch;
  color: var(--text-2)
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 20px
}

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

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

.card,
.info-card,
.timeline-item,
.policy-card,
.contact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease
}

.card::before,
.info-card::before,
.timeline-item::before,
.policy-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle at center, rgba(127, 211, 93, 0.14), transparent 68%);
  pointer-events: none
}

.card:hover,
.archive-card:hover,
.poster:hover,
.info-card:hover,
.timeline-item:hover,
.policy-card:hover,
.contact-card:hover {
  transform: translatey(-4px)
}

.card h3,
.card h4 {
  margin: 0 0 12px;
  line-height: 1.35;
  letter-spacing: -.03em
}

.card p,
.info-card span,
.timeline-item span,
.policy-card p,
.contact-card p {
  margin: 0;
  color: var(--text-2)
}

.label {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(223, 244, 220, 0.96), rgba(235, 250, 234, 0.96));
  color: #205437;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.activity-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
  align-items: stretch
}

.activity-copy {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 246, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow)
}

.activity-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -.05em
}

.activity-copy p {
  margin: 0 0 24px;
  color: var(--text-2)
}

.activity-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.poster {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: #eef4f0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  transition: transform .28s ease
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(9, 12, 10, 0.36))
}

.poster-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 12px 14px
}

.poster-meta strong {
  display: block;
  margin-bottom: 4px
}

.poster-meta span {
  display: block;
  color: var(--text-2);
  font-size: .84rem;
  position: relative
}

.poster-meta span.animate-date {
  overflow: hidden
}

.poster-meta span.animate-date::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.92) 48%, transparent 76%);
  transform: translatex(-120%);
  animation: shimmer 4s ease-in-out infinite .8s
}

.animate-date {
  position: relative;
  overflow: hidden
}

.animate-date::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.72) 48%, transparent 76%);
  transform: translatex(-120%);
  animation: shimmer 4s ease-in-out infinite .8s
}

.info-grid,
.contact-grid {
  display: grid;
  gap: 18px
}

.info-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr)
}

.info-stack,
.timeline,
.contact-grid {
  display: grid;
  gap: 14px
}

.timeline-item {
  border-left: 3px solid rgba(127, 211, 93, 0.6)
}

.timeline-item strong,
.info-card strong,
.policy-card strong,
.contact-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: -.02em
}

.page-hero {
  padding: 56px 0 24px
}

.page-hero-inner {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 38px;
  background: radial-gradient(circle at 100% 0, rgba(127, 211, 93, 0.18), transparent 26%), linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 247, 243, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow)
}

.page-hero-inner::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 211, 93, 0.22), transparent 70%);
  filter: blur(8px)
}

.page-hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.06em
}

.page-hero p {
  margin: 0;
  max-width: 60ch;
  color: var(--text-2)
}

.page-meta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.meta-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  color: var(--text-2);
  font-size: .88rem;
  font-weight: 600
}

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px
}

.chip {
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid rgba(16, 21, 17, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text-2);
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
  box-shadow: var(--shadow-soft)
}

.chip.active,
.chip:hover {
  color: #fff;
  background: linear-gradient(135deg, #15432b, #2f8b53);
  border-color: transparent
}

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

.archive-card {
  position: relative;
  min-height: 390px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  background: #e9efe9;
  transition: transform .28s ease
}

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

.archive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(14, 18, 16, 0.72))
}

.archive-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  gap: 8px
}

.archive-content h3 {
  margin: 0;
  color: #fff;
  font-size: 1.12rem
}

.archive-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84)
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #245a39;
  font-size: .76rem;
  font-weight: 800
}

.hidden {
  display: none !important
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 36px;
  border-radius: 34px;
  background: radial-gradient(circle at 0 0, rgba(127, 211, 93, 0.16), transparent 24%), linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(243, 249, 245, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow)
}

.cta h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.28;
}

.cta p {
  margin: 0;
  color: var(--text-2);
  max-width: 58ch
}

.footer {
  padding: 36px 0 52px;
  color: var(--text-2)
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  border-top: 1px solid rgba(16, 21, 17, 0.08);
  padding-top: 20px
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.reveal {
  opacity: 0;
  transform: translatey(22px) scale(0.985);
  transition: opacity .9s cubic-bezier(0.2, 0.7, 0.2, 1), transform .9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform, opacity
}

.reveal.in {
  opacity: 1;
  transform: none
}

.float-soft {
  animation: floatSoft 7.5s ease-in-out infinite
}

@keyframes floatSoft {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

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

.contact-card a {
  color: #19553a;
  font-weight: 700
}

@media(max-width:1080px) {

  .hero-grid,
  .activity-panel,
  .info-grid,
  .cta {
    grid-template-columns: 1fr
  }

  .hero-side {
    min-height: 660px
  }
}

@media(max-width:920px) {
  .menu-btn {
    display: inline-flex
  }

  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(var(--header-h) - 4px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(248, 251, 249, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--shadow)
  }

  .nav.open {
    display: flex
  }

  .header-inner {
    grid-template-columns: auto auto
  }

  .hero {
    min-height: auto;
    padding-top: 34px
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .archive,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr
  }

  .hero-side {
    min-height: 560px
  }

  .hero-title {
    max-width: unset
  }

  .hero-image-frame {
    inset: 16px 16px 132px 16px
  }

  .hero-metrics {
    grid-template-columns: 1fr
  }

  .activity-visual {
    grid-template-columns: 1fr
  }

  .page-hero-inner,
  .section-shell,
  .cta,
  .card,
  .info-card,
  .policy-card,
  .contact-card,
  .timeline-item {
    padding: 24px
  }

  .poster {
    min-height: 340px
  }

  .archive-card {
    min-height: 340px
  }

  .wrap {
    width: min(var(--max), calc(100% - 24px))
  }
}

@media(max-width:640px) {
  .header-inner {
    min-height: 76px
  }

  .brand-copy small {
    display: none
  }

  .hero-title {
    font-size: clamp(2.5rem, 14vw, 4.2rem)
  }

  .hero-text,
  .page-hero p,
  .section-head p {
    font-size: .96rem
  }

  .hero-side {
    min-height: 500px
  }

  .hero-card {
    left: 16px;
    right: 16px;
    bottom: 16px
  }

  .hero-image-frame img {
    padding: 10px
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

:root {
  --bg: #eef2ee;
  --bg-2: #e7ede8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fff;
  --surface-deep: #112016;
  --text: #101813;
  --text-2: #5b685f;
  --line: rgba(13, 24, 17, 0.08);
  --line-strong: rgba(13, 24, 17, 0.16);
  --accent: #63c86e;
  --accent-2: #1f8a58;
  --accent-3: #dcf0df;
  --ink: #123222;
  --shadow: 0 30px 80px rgba(9, 20, 13, 0.1);
  --shadow-soft: 0 14px 34px rgba(9, 20, 13, 0.06);
  --radius: 32px;
  --radius-lg: 44px;
  --header-h: 100px
}

body {
  background: radial-gradient(circle at 8% 0, rgba(99, 200, 110, 0.14), transparent 22%), radial-gradient(circle at 92% 0, rgba(31, 138, 88, 0.09), transparent 22%), linear-gradient(180deg, #f8faf8 0, #eff4f0 34%, #f7faf8 100%)
}

body::before {
  left: -12vw;
  top: -12vw;
  background: rgba(126, 206, 135, 0.26);
  filter: blur(88px);
  opacity: .9
}

body::after {
  right: -10vw;
  top: 16vh;
  background: rgba(79, 157, 121, 0.18);
  filter: blur(86px);
  opacity: .9
}

.wrap {
  width: min(var(--max), calc(100% - 48px))
}

.header {
  top: 18px;
  width: min(calc(var(--max) + 10px), calc(100% - 36px));
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 249, 246, 0.68));
  backdrop-filter: blur(28px) saturate(150%);
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(8, 20, 13, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9)
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(99, 200, 110, 0.2), rgba(255, 255, 255, 0.86));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none
}

.header-inner {
  min-height: 80px;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 0 26px
}

.brand {
  gap: 16px
}

.brand-mark {
  width: 54px;
  height: 54px;
}

.brand-copy>div {
  font-size: 1.05rem;
  letter-spacing: -.03em
}

.brand-copy small {
  color: #748478;
  letter-spacing: .16em
}

.nav {
  justify-content: flex-end;
  gap: 10px
}

.nav a {
  padding: 12px 18px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px)
}

.nav a:hover,
.nav a.active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 246, 0.85));
  border-color: rgba(255, 255, 255, 0.94);
  color: #14271c;
  box-shadow: 0 14px 28px rgba(8, 20, 13, 0.07);
  transform: translatey(-1px)
}

.hero {
  padding: 104px 0 72px;
  min-height: auto
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 40px;
  align-items: center
}

.hero-copy {
  padding: 46px 0 24px
}

.hero-title {
  font-size: clamp(4rem, 7.4vw, 6.5rem);
  line-height: .96;
  letter-spacing: -.08em;
  max-width: 760px;
  text-wrap: balance
}

.accent {
  display: inline-block;
  background: linear-gradient(135deg, #2e8f58 0, #70c85e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero-text {
  max-width: 58ch;
  font-size: 1.05rem;
  color: #58675d
}

.hero-actions {
  margin: 34px 0 34px
}

.btn-main {
  background: linear-gradient(135deg, #163d29, #1f6a43);
  box-shadow: 0 18px 40px rgba(18, 50, 33, 0.18)
}

.btn-main:hover {
  box-shadow: 0 22px 44px rgba(18, 50, 33, 0.22)
}

.btn-sub {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.88)
}

.hero-metrics {
  gap: 16px
}

.metric {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(250, 252, 250, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  min-height: 122px;
  box-shadow: 0 18px 38px rgba(10, 20, 14, 0.05)
}

.metric strong {
  font-size: 2rem
}

.hero-side {
  position: relative;
  min-height: 700px;
  padding: 26px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(242, 248, 243, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 60px rgba(10, 20, 14, 0.08)
}

.hero-side::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  border: 1px solid rgba(75, 144, 101, 0.12);
  pointer-events: none
}

.hero-side .orb {
  filter: blur(8px);
  opacity: .9
}

.hero-image-frame {
  inset: 26px 26px 180px 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 250, 247, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 22px 50px rgba(10, 20, 14, 0.07)
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none
}

.hero-image-frame img {
  padding: 32px
}

.hero-card {
  left: 30px;
  right: 30px;
  bottom: 30px;
  padding: 24px 24px 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(10, 20, 14, 0.08)
}

.hero-card strong {
  font-size: 1.15rem;
  letter-spacing: -.03em
}

.date-glow {
  background: linear-gradient(180deg, rgba(229, 244, 229, 0.9), rgba(243, 249, 244, 0.9));
  border: 1px solid rgba(99, 200, 110, 0.2)
}

.section {
  padding: 96px 0
}

.section.compact {
  padding: 76px 0
}

.section-shell,
.activity-copy,
.cta,
.page-hero-inner {
  margin-top: 24px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 250, 248, 0.58));
  box-shadow: 0 22px 60px rgba(9, 20, 13, 0.07)
}

.page-hero {
  padding: 102px 0 24px
}

.page-hero-inner {
  padding: 52px
}

.page-hero h1,
.section-head h2,
.cta h2,
.activity-copy h3 {
  letter-spacing: -.07em
}

.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem)
}

.card,
.info-card,
.timeline-item,
.policy-card,
.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(249, 251, 250, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(9, 20, 13, 0.05);
  border-radius: 30px
}

.label,
.eyebrow,
.badge,
.meta-pill {
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(10, 20, 14, 0.05)
}

.label,
.eyebrow,
.badge {
  background: linear-gradient(180deg, rgba(235, 247, 237, 0.94), rgba(225, 242, 229, 0.92));
  color: #1f5c39
}

.poster,
.archive-card {
  border-radius: 30px
}

.archive-card::after,
.poster::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(13, 17, 14, 0.68))
}

.footer {
  padding-top: 18px
}

.footer-inner {
  border-top: 1px solid rgba(13, 24, 17, 0.08)
}

@media(max-width:920px) {
  :root {
    --header-h: 84px
  }

  .wrap {
    width: min(var(--max), calc(100% - 24px))
  }

  .header {
    top: 11px;
    width: min(calc(var(--max) + 10px), calc(100% - 18px));
    border-radius: 24px
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: auto auto;
    padding: 0 18px
  }

  .nav {
    top: calc(var(--header-h) + 6px);
    left: 0;
    right: 0;
    border-radius: 24px;
    background: rgba(248, 251, 249, 0.96)
  }

  .hero {
    padding-top: 74px
  }

  .hero-side {
    min-height: 560px;
    padding: 18px
  }

  .hero-image-frame {
    inset: 18px 18px 144px 18px
  }

  .hero-card {
    left: 20px;
    right: 20px;
    bottom: 20px
  }

  .page-hero {
    padding-top: 86px
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(10px);
  transition: opacity .8s cubic-bezier(0.22, 1, 0.36, 1), transform .8s cubic-bezier(0.22, 1, 0.36, 1), filter .8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter
}

.reveal.active,
.reveal.in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0)
}

.hero-copy.reveal,
.page-hero-inner.reveal,
.section-head.reveal,
.activity-copy.reveal,
.cta.reveal {
  transform: translate3d(0, 42px, 0)
}

.hero-side.reveal,
.poster.reveal,
.archive-card.reveal,
.card.reveal,
.info-card.reveal,
.timeline-item.reveal,
.policy-card.reveal,
.contact-card.reveal,
.news-item.reveal,
.hero-card.reveal {
  transform: translate3d(0, 30px, 0)
}

.card.reveal.active,
.card.reveal.in,
.info-card.reveal.active,
.info-card.reveal.in,
.timeline-item.reveal.active,
.timeline-item.reveal.in,
.policy-card.reveal.active,
.policy-card.reveal.in,
.contact-card.reveal.active,
.contact-card.reveal.in,
.news-item.reveal.active,
.news-item.reveal.in,
.poster.reveal.active,
.poster.reveal.in,
.archive-card.reveal.active,
.archive-card.reveal.in,
.hero-card.reveal.active,
.hero-card.reveal.in {
  box-shadow: 0 20px 48px rgba(9, 20, 13, 0.08)
}

@media(prefers-reduced-motion:reduce) {

  .reveal,
  .hero-copy.reveal,
  .page-hero-inner.reveal,
  .section-head.reveal,
  .activity-copy.reveal,
  .cta.reveal,
  .hero-side.reveal,
  .poster.reveal,
  .archive-card.reveal,
  .card.reveal,
  .info-card.reveal,
  .timeline-item.reveal,
  .policy-card.reveal,
  .contact-card.reveal,
  .news-item.reveal,
  .hero-card.reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none
  }
}

:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1)
}

body:not(.page-ready) .header,
body:not(.page-ready) .hero-copy,
body:not(.page-ready) .hero-side,
body:not(.page-ready) .page-hero-inner {
  opacity: 0
}

body.page-loaded .header {
  animation: headerEntrance .9s var(--ease-out-expo) both
}

body.page-loaded .hero-copy,
body.page-loaded .page-hero-inner {
  animation: heroIntroText 1.05s var(--ease-out-expo) both
}

body.page-loaded .hero-side {
  animation: heroIntroVisual 1.2s var(--ease-out-expo) .08s both
}

body.page-loaded .hero-title {
  animation: titleLift 1.15s var(--ease-out-expo) .05s both;
  transform-origin: left bottom
}

body.page-loaded .hero-text {
  animation: heroIntroText 1s var(--ease-out-expo) .16s both
}

body.page-loaded .hero-actions {
  animation: heroIntroText .95s var(--ease-out-expo) .26s both
}

body.page-loaded .hero-metrics .metric {
  animation: metricPop .95s var(--ease-out-expo) both
}

body.page-loaded .nav a {
  animation: navItemIn .72s var(--ease-out-expo) both
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 46px, 0) scale(0.975);
  filter: blur(12px);
  transition: opacity .95s var(--ease-smooth), transform 1s var(--ease-smooth), filter .95s var(--ease-smooth), box-shadow .45s ease, border-color .35s ease, background .35s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter
}

.reveal.active,
.reveal.in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0)
}

.hero-copy.reveal,
.page-hero-inner.reveal,
.section-head.reveal,
.activity-copy.reveal,
.cta.reveal,
.filter-row.reveal {
  transform: translate3d(0, 54px, 0) scale(0.985)
}

.hero-side.reveal,
.poster.reveal,
.archive-card.reveal,
.card.reveal,
.info-card.reveal,
.timeline-item.reveal,
.policy-card.reveal,
.contact-card.reveal,
.news-item.reveal,
.hero-card.reveal,
.metric.reveal {
  transform: translate3d(0, 34px, 0) scale(0.968)
}

.header,
.nav a,
.btn-main,
.btn-sub,
.chip,
.metric,
.card,
.info-card,
.policy-card,
.contact-card,
.timeline-item,
.archive-card,
.poster,
.hero-card,
.hero-image-frame,
.hero-side .orb {
  transition: transform .42s var(--ease-smooth), box-shadow .42s ease, border-color .34s ease, background .34s ease, filter .34s ease
}

.nav a:hover,
.chip:hover,
.btn-main:hover,
.btn-sub:hover {
  box-shadow: 0 18px 36px rgba(10, 20, 14, 0.1)
}

.card:hover,
.info-card:hover,
.policy-card:hover,
.contact-card:hover,
.timeline-item:hover,
.metric:hover {
  box-shadow: 0 26px 58px rgba(10, 20, 14, 0.1);
  border-color: rgba(99, 200, 110, 0.18)
}

.archive-card:hover,
.poster:hover {
  box-shadow: 0 28px 68px rgba(10, 20, 14, 0.14)
}

.archive-card:hover img,
.poster:hover img {
  transform: scale(1.06);
  transition: transform 1.2s var(--ease-smooth)
}

.hero-card {
  transform: translate3d(0, 0, 0)
}

.hero-side:hover {
  box-shadow: 0 38px 92px rgba(10, 20, 14, 0.13)
}

.hero-side:hover .hero-image-frame {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 28px 64px rgba(10, 20, 14, 0.12)
}

.filter-row .chip.active {
  transform: translate3d(0, -2px, 0) scale(1.04)
}

@keyframes headerEntrance {
  from {
    opacity: 0;
    transform: translate3d(0, -18px, 0) scale(.985)
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1)
  }
}

@keyframes heroIntroText {
  from {
    opacity: 0;
    transform: translate3d(0, 42px, 0);
    filter: blur(10px)
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0)
  }
}

@keyframes heroIntroVisual {
  from {
    opacity: 0;
    transform: translate3d(28px, 38px, 0) scale(.94);
    filter: blur(12px)
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0)
  }
}

@keyframes titleLift {
  from {
    opacity: 0;
    transform: translate3d(0, 52px, 0) scale(.97);
    letter-spacing: -.03em;
    filter: blur(12px)
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    letter-spacing: -.08em;
    filter: blur(0)
  }
}

@keyframes metricPop {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(.92);
    filter: blur(8px)
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0)
  }
}

@keyframes navItemIn {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0) scale(.95)
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1)
  }
}

@media(max-width:920px) {
  body.page-loaded .nav a {
    animation: none
  }
}

@media(prefers-reduced-motion:reduce) {

  body:not(.page-ready) .header,
  body:not(.page-ready) .hero-copy,
  body:not(.page-ready) .hero-side,
  body:not(.page-ready) .page-hero-inner,
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
    transition: none !important
  }
}

.hero-section,
.hero {
  overflow: hidden
}

.hero-section .hero-title,
.hero-section .hero-subtext,
.hero-section .hero-visual,
.hero-section .hero-card,
.hero .hero-title,
.hero .hero-subtext,
.hero .hero-visual,
.hero .hero-card {
  opacity: 0;
  transform: translatey(50px);
  will-change: opacity, transform
}

.hero-section.hero-loaded .hero-title,
.hero.hero-loaded .hero-title,
.hero-section.hero-loaded .hero-subtext,
.hero.hero-loaded .hero-subtext,
.hero-section.hero-loaded .hero-visual,
.hero.hero-loaded .hero-visual,
.hero-section.hero-loaded .hero-card,
.hero.hero-loaded .hero-card {
  opacity: 1;
  transform: translatey(0);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1)
}

.hero-section.hero-loaded .hero-title,
.hero.hero-loaded .hero-title {
  transition-delay: .12s
}

.hero-section.hero-loaded .hero-subtext,
.hero.hero-loaded .hero-subtext {
  transition-delay: .36s
}

.hero-section.hero-loaded .hero-visual,
.hero.hero-loaded .hero-visual {
  transition-delay: .62s
}

.hero-section.hero-loaded .hero-card,
.hero.hero-loaded .hero-card {
  transition-delay: .86s
}

.hero-section .hero-title.reveal,
.hero-section .hero-subtext.reveal,
.hero-section .hero-visual.reveal,
.hero-section .hero-card.reveal,
.hero .hero-title.reveal,
.hero .hero-subtext.reveal,
.hero .hero-visual.reveal,
.hero .hero-card.reveal {
  filter: none;
  transition: none
}

.hero-section .hero-title.reveal.active,
.hero-section .hero-title.reveal.in,
.hero-section .hero-subtext.reveal.active,
.hero-section .hero-subtext.reveal.in,
.hero-section .hero-visual.reveal.active,
.hero-section .hero-visual.reveal.in,
.hero-section .hero-card.reveal.active,
.hero-section .hero-card.reveal.in,
.hero .hero-title.reveal.active,
.hero .hero-title.reveal.in,
.hero .hero-subtext.reveal.active,
.hero .hero-subtext.reveal.in,
.hero .hero-visual.reveal.active,
.hero .hero-visual.reveal.in,
.hero .hero-card.reveal.active,
.hero .hero-card.reveal.in {
  opacity: 0;
  transform: translatey(50px)
}

.hero-section.hero-loaded .hero-title.reveal.active,
.hero-section.hero-loaded .hero-title.reveal.in,
.hero-section.hero-loaded .hero-subtext.reveal.active,
.hero-section.hero-loaded .hero-subtext.reveal.in,
.hero-section.hero-loaded .hero-visual.reveal.active,
.hero-section.hero-loaded .hero-visual.reveal.in,
.hero-section.hero-loaded .hero-card.reveal.active,
.hero-section.hero-loaded .hero-card.reveal.in,
.hero.hero-loaded .hero-title.reveal.active,
.hero.hero-loaded .hero-title.reveal.in,
.hero.hero-loaded .hero-subtext.reveal.active,
.hero.hero-loaded .hero-subtext.reveal.in,
.hero.hero-loaded .hero-visual.reveal.active,
.hero.hero-loaded .hero-visual.reveal.in,
.hero.hero-loaded .hero-card.reveal.active,
.hero.hero-loaded .hero-card.reveal.in {
  opacity: 1;
  transform: translatey(0)
}

@media(prefers-reduced-motion:reduce) {

  .hero-section .hero-title,
  .hero-section .hero-subtext,
  .hero-section .hero-visual,
  .hero-section .hero-card,
  .hero .hero-title,
  .hero .hero-subtext,
  .hero .hero-visual,
  .hero .hero-card {
    opacity: 1;
    transform: none;
    transition: none !important
  }
}

:root {
  --ease-luxury: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-silk: cubic-bezier(0.19, 1, 0.22, 1)
}

body {
  perspective: 1400px
}

body::selection {
  background: rgba(127, 211, 93, 0.22)
}

@keyframes loaderSweep {
  0% {
    transform: translateX(-40%) translateY(-1%)
  }

  100% {
    transform: translateX(40%) translateY(1%)
  }
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden
}

@keyframes orbitPulse {
  from {
    transform: scale(.98);
    opacity: .65
  }

  to {
    transform: scale(1.04);
    opacity: 1
  }
}

@keyframes loaderOrb {
  0% {
    transform: scale(.84);
    filter: blur(4px)
  }

  50% {
    transform: scale(1.02);
    filter: blur(1px)
  }

  100% {
    transform: scale(.92);
    filter: blur(3px)
  }
}

.hero {
  position: relative
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -6% 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22));
  pointer-events: none
}

.hero-title,
.hero-text,
.hero-actions,
.hero-metrics,
.hero-side,
.hero-card,
.page-hero-inner,
.section-head,
.card,
.info-card,
.policy-card,
.contact-card,
.poster,
.archive-card,
.activity-copy,
.cta,
.filter-row {
  will-change: transform, opacity, filter
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.985) rotatex(7deg);
  filter: blur(10px);
  transition: opacity 1.1s var(--ease-luxury) var(--reveal-delay, 0ms), transform 1.25s var(--ease-luxury) var(--reveal-delay, 0ms), filter 1.15s var(--ease-soft) var(--reveal-delay, 0ms);
  transform-origin: 50% 100%
}

.reveal.in,
.reveal.active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotatex(0);
  filter: blur(0)
}

body.page-ready .header {
  animation: headerFloat 1.15s var(--ease-luxury) both
}

@keyframes headerFloat {
  from {
    opacity: 0;
    transform: translateY(-18px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-section .hero-copy>* {
  transition: opacity 1.05s var(--ease-luxury), transform 1.18s var(--ease-luxury), filter 1.05s var(--ease-soft)
}

.hero-section:not(.hero-loaded) .hero-copy>*,
.hero-section:not(.hero-loaded) .hero-side,
.hero-section:not(.hero-loaded) .hero-card {
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(0, 48px, 0) scale(0.98)
}

.hero-loaded .hero-title {
  transition-delay: .04s
}

.hero-loaded .hero-text,
.hero-loaded .hero-subtext {
  transition-delay: .16s
}

.hero-loaded .hero-actions {
  transition-delay: .28s
}

.hero-loaded .hero-metrics {
  transition-delay: .38s
}

.hero-loaded .hero-side {
  transition-delay: .22s
}

.hero-loaded .hero-card {
  transition-delay: .45s
}

body.page-loaded .hero-side {
  animation: heroBreath 7s ease-in-out infinite
}

@keyframes heroBreath {

  0%,
  100% {
    transform: translate3d(0, 0, 0)
  }

  50% {
    transform: translate3d(0, -8px, 0)
  }
}

.hero-image-frame,
.hero-card,
.poster,
.archive-card,
.card,
.info-card,
.policy-card,
.contact-card,
.metric,
.btn-main,
.btn-sub,
.nav a {
  transition: transform .65s var(--ease-luxury), box-shadow .65s var(--ease-soft), background .45s ease, border-color .45s ease, opacity .45s ease;
  transform: translatez(0)
}

.hero-image-frame {
  transform-style: preserve-3d;
  box-shadow: 0 40px 120px rgba(12, 20, 16, 0.14)
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.34), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.18));
  mix-blend-mode: screen;
  opacity: .9
}

.hero-card {
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 28px 80px rgba(12, 20, 16, 0.12)
}

.card:hover,
.info-card:hover,
.policy-card:hover,
.contact-card:hover,
.poster:hover,
.archive-card:hover,
.metric:hover {
  transform: translate3d(0, -10px, 0) scale(1.01);
  box-shadow: 0 26px 70px rgba(12, 20, 16, 0.12)
}

.poster:hover img,
.archive-card:hover img,
.hero-image-frame:hover img {
  transform: scale(1.035)
}

.poster img,
.archive-card img,
.hero-image-frame img {
  transition: transform 1s var(--ease-luxury), filter .9s var(--ease-soft)
}

.btn-main,
.btn-sub {
  position: relative;
  overflow: hidden;
  isolation: isolate
}

.btn-main::before,
.btn-sub::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, 0.42) 49%, transparent 76%);
  transform: translatex(-130%);
  transition: transform .95s var(--ease-luxury);
  z-index: -1
}

.btn-main:hover::before,
.btn-sub:hover::before {
  transform: translatex(130%)
}

.nav a:hover {
  transform: translatey(-2px)
}

.hero-side .orb {
  transition: transform .8s var(--ease-luxury), opacity .8s ease;
  filter: blur(0)
}

body.page-loaded .orb-1 {
  animation: orbFloatOne 8s ease-in-out infinite
}

body.page-loaded .orb-2 {
  animation: orbFloatTwo 10s ease-in-out infinite
}

@keyframes orbFloatOne {

  0%,
  100% {
    transform: translate3d(0, 0, 0)
  }

  50% {
    transform: translate3d(12px, -16px, 0)
  }
}

@keyframes orbFloatTwo {

  0%,
  100% {
    transform: translate3d(0, 0, 0)
  }

  50% {
    transform: translate3d(-10px, 12px, 0)
  }
}

.section-shell,
.activity-panel,
.cta,
.page-hero-inner {
  position: relative;
  overflow: hidden
}

.section-shell::after,
.activity-panel::after,
.cta::after,
.page-hero-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 35%, transparent 65%, rgba(255, 255, 255, 0.12));
  opacity: .65
}

.archive-card.hidden {
  display: none !important
}

@media(prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none
  }

  * {
    animation: none !important;
    transition: none !important
  }
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

html,
body {
  max-width: 100%;
  overflow-x: clip
}

iframe,
video,
canvas,
svg {
  max-width: 100%
}

.menu-btn {
  align-items: center;
  justify-content: center;
  min-height: 46px
}

.nav a {
  word-break: keep-all
}

.hero-copy,
.section-head>div,
.activity-copy,
.cta>div,
.page-hero p,
.hero-text,
.card p,
.info-card p,
.policy-card p,
.contact-card p {
  overflow-wrap: anywhere
}

@media(max-width:1200px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 28px
  }

  .hero-side {
    min-height: 620px
  }

  .section-shell,
  .page-hero-inner,
  .cta,
  .activity-copy {
    padding: 32px
  }
}

@media(max-width:920px) {
  .header {
    top: 10px
  }

  .header-inner {
    gap: 12px
  }

  .brand {
    min-width: 0
  }

  .brand-copy>div {
    font-size: .96rem;
    line-height: 1.28
  }

  .menu-btn {
    display: inline-flex;
    justify-self: end
  }

  .nav {
    max-height: min(70vh, 520px);
    overflow: auto;
    -webkit-overflow-scrolling: touch
  }

  .nav a {
    padding: 14px 16px;
    border-radius: 16px
  }

  .hero {
    padding-bottom: 28px
  }

  .hero-copy {
    padding-block: 10px
  }

  .hero-title {
    max-width: none
  }

  .hero-metrics {
    max-width: none
  }

  .activity-panel,
  .info-grid,
  .cta,
  .hero-grid,
  .grid-2,
  .grid-3,
  .archive,
  .contact-grid,
  .footer-inner,
  .activity-visual {
    grid-template-columns: 1fr
  }

  .hero-side {
    order: 2;
    min-height: 520px
  }

  .hero-copy {
    order: 1
  }

  .poster,
  .archive-card {
    min-height: 320px
  }
}

@media(max-width:768px) {
  :root {
    --header-h: 74px
  }

  .wrap {
    width: min(var(--max), calc(100% - 20px))
  }

  .header {
    width: calc(100% - 12px);
    top: 6px;
    border-radius: 20px
  }

  .header-inner {
    min-height: 64px;
    padding: 0 14px
  }

  .brand-copy>div {
    font-size: .9rem
  }

  .nav {
    left: 8px;
    right: 8px;
    top: calc(100% + 8px);
    padding: 10px;
    border-radius: 18px
  }

  .hero {
    padding-top: 66px
  }

  .hero-title,
  .page-hero h1 {
    word-break: keep-all
  }

  .hero-text,
  .page-hero p,
  .section-head p {
    font-size: .95rem;
    line-height: 1.8
  }

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

  .btn-main,
  .btn-sub {
    width: 100%;
    min-height: 52px
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px
  }

  .metric {
    padding: 16px
  }

  .hero-side {
    min-height: 460px;
    padding: 14px;
    border-radius: 28px
  }

  .hero-image-frame {
    inset: 14px 14px 136px 14px;
    border-radius: 22px
  }

  .hero-image-frame img {
    padding: 10px
  }

  .hero-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
    border-radius: 20px
  }

  .section,
  .section.compact {
    padding: 56px 0
  }

  .section-shell,
  .page-hero-inner,
  .cta,
  .activity-copy,
  .card,
  .info-card,
  .timeline-item,
  .policy-card,
  .contact-card {
    padding: 20px;
    border-radius: 22px
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px
  }

  .section-head h2,
  .activity-copy h3,
  .cta h2 {
    line-height: 1.12
  }

  .page-meta,
  .filter-row,
  .footer-links,
  .badges {
    gap: 8px
  }

  .poster,
  .archive-card {
    min-height: 280px;
    border-radius: 22px
  }

  .poster-meta,
  .archive-content {
    padding: 14px
  }

  .footer {
    padding: 24px 0 36px
  }
}

@media(max-width:560px) {
  .brand-copy small {
    display: none
  }

  .hero-title {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
    line-height: 1.02
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.06
  }

  .hero-text,
  .page-hero p,
  .section-head p,
  .card p,
  .info-card p,
  .policy-card p,
  .contact-card p {
    font-size: .92rem
  }

  .hero-side {
    min-height: 420px
  }

  .hero-image-frame {
    inset: 12px 12px 128px 12px
  }

  .hero-card {
    padding: 16px
  }

  .date-glow,
  .meta-pill,
  .label,
  .eyebrow,
  .badge {
    width: 100%;
    justify-content: center;
    text-align: center
  }
}

.hero-actions {
  align-items: center
}

@keyframes cvShine {

  0%,
  18% {
    transform: translateX(-130%)
  }

  45%,
  100% {
    transform: translateX(130%)
  }
}

.cv-section .section-shell,
.contact-conversion-section .section-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 255, 250, 0.62))
}

.cv-grid .cv-card h3 {
  font-size: 1.2rem
}

.contact-grid .contact-card h3 {
  word-break: break-word
}

@media(max-width:640px) {

  .conversion-actions .btn-main,
  .conversion-actions .btn-sub {
    flex: 1
  }
}

.notfound-page {
  min-height: 100vh;
  display: grid;
  align-items: start
}

.notfound-cta {
  margin-top: 10vh
}

.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
}

.info-card h3,
.timeline-item h3,
.policy-card h3,
.poster-meta h3 {
  margin: 0;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit
}

.contact-grid>h2,
.grid-3>h2,
.activity-visual>h2 {
  grid-column: 1/-1
}

/* ===== 2026-04-16 hero title balance adjustment ===== */
.hero-grid {
  align-items: center;
  gap: 44px
}

.hero-copy {
  max-width: 620px;
  padding-block: 30px 20px;
}

.hero-title {
  margin: 22px 0 20px;
  max-width: 8.6ch;
  font-size: clamp(3.35rem, 5.4vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
  text-wrap: balance;
}

.hero-title .accent {
  font-weight: 800;
}

.hero-subtext,
.hero-text.hero-subtext {
  max-width: 35em;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.72;
  color: #5b685f;
}

.hero-actions {
  margin: 28px 0 30px;
}

.hero-metrics {
  max-width: 640px;
  margin-top: 30px;
}

.hero-metrics .metric {
  min-height: 116px;
}

@media (max-width:1200px) {
  .hero-title {
    font-size: clamp(3rem, 5.1vw, 4.6rem);
    max-width: 9ch;
  }
}

@media (max-width:920px) {
  .hero-copy {
    max-width: none;
    padding-block: 6px 4px;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2.8rem, 9vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }
}

@media (max-width:560px) {
  .hero-title {
    font-size: clamp(2.3rem, 11vw, 3.3rem);
    line-height: 1.04;
  }
}


/* ===== 2026-04-16 final release tune ===== */
.brand-copy>div,
.brand-copy small {
  transition: color .28s ease, opacity .28s ease;
}

.brand:hover .brand-copy>div {
  color: var(--accent-2);
}

.brand:hover .brand-copy small {
  color: #3f8f63;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 540px;
}

.hero-title {
  margin: 22px 0 18px;
  max-width: none;
  font-size: clamp(3.2rem, 5.4vw, 5.4rem);
  line-height: 1.01;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-subtext,
.hero-text.hero-subtext {
  max-width: 34em;
  font-size: 1rem;
  line-height: 1.78;
}

.hero-side {
  min-height: 760px;
  padding: 22px;
}

.hero-image-frame {
  inset: 20px 20px 152px 20px;
}

.hero-image-frame img {
  padding: 14px;
  object-fit: contain;
}

.hero-card {
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.services-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: clamp(2.35rem, 4.7vw, 4.5rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
  font-weight: 500;
  text-wrap: nowrap;
  white-space: normal;
  max-width: none;
}

.services-title strong {
  font-weight: 700;
}

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.02fr);
    gap: 34px;
  }

  .hero-title {
    font-size: clamp(3rem, 5vw, 4.8rem);
    max-width: 8.2ch;
  }
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2.8rem, 9vw, 4.2rem);
    line-height: 1.03;
  }

  .hero-side {
    min-height: 560px;
  }

  .hero-image-frame {
    inset: 18px 18px 138px 18px;
  }
}

@media (max-width: 560px) {
  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 1.05;
  }

  .services-title {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.28;
  }
}

.activity-copy h3 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 12px;
}

@media (max-width: 768px) {
  .activity-copy h3 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
}

.section-shell, 
[class*="-section"], 
section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.section-head, 
.about-head, 
.service-header-section, 
.activity-copy,
.privacy-header {
    margin-bottom: 18px !important;
}

section + section {
    margin-top: 0 !important;
}

.hero-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.hero-copy{
  padding-top: 22px;
}

.hero-side{
  min-height: 640px;
  padding: 18px;
  border-radius: 34px;
  margin-top: 18px;
}

.hero-image-frame{
  position:absolute;
  inset: 16px 16px 108px 16px;
  border-radius: 26px;
}

.hero-image-frame img{
  width:100%;
  height:100%;
  object-fit: contain;
  padding: 18px;
}

.hero-card{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  min-height: 62px;
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.92);
  display:flex;
  align-items:center;
  justify-content:flex-start;
  box-shadow: 0 14px 30px rgba(10,20,14,0.06);
}

.date-glow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232,245,233,0.95), rgba(244,249,245,0.95));
  border: 1px solid rgba(99,200,110,0.22);
  color: #2a5b3f;
  font-size: 14px;
  font-weight: 700;
  margin:0;
}

.hero-title.hero-title-compact{
  font-size: clamp(56px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.hero-text,
.hero-subtext{
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.75;
  color: #5d6a61;
}





/* ===== Company Section Premium ===== */
.company-shell {
  padding: 36px 40px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(247,250,248,0.58));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 18px 44px rgba(10,20,14,0.05);
}

/* ===== Section Title ===== */
.company-block-title {
  margin: 0 0 18px;
}

.history-block-title {
  margin: 46px 0 18px;
}

.company-block-title .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(235,244,237,0.95), rgba(226,238,229,0.92));
  border: 1px solid rgba(255,255,255,0.92);
  color: #2c6a45;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-block-title h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: #122019;
}

/* ===== Tables ===== */
.company-table,
.history-table {
  border-top: 1px solid rgba(120,135,124,0.18);
}

.company-table .row,
.history-table .row {
  display: grid;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(120,135,124,0.18);
}

.company-table .row {
  grid-template-columns: 180px 1fr;
  column-gap: 30px;
}

.history-table .row {
  grid-template-columns: 140px 1fr;
  column-gap: 26px;
}

/* ===== Left labels ===== */
.company-table .label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  min-width: 140px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(235,244,237,0.95), rgba(226,238,229,0.92));
  border: 1px solid rgba(255,255,255,0.92);
  color: #22362b;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}

/* ===== Text ===== */
.company-table .value,
.history-table .desc {
  color: #55645b;
  font-size: 16px;
  line-height: 1.85;
}

.history-table .year {
  color: #1f2d25;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* ===== Hover ===== */
.company-table .row:hover,
.history-table .row:hover {
  background: rgba(116, 190, 132, 0.05);
}

/* ===== Long text balance ===== */
.company-table .value br,
.history-table .desc br {
  content: "";
}

.company-table .value,
.history-table .desc,
.history-table .year {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .company-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .company-block-title {
    margin-bottom: 14px;
  }

  .history-block-title {
    margin: 34px 0 14px;
  }

  .company-block-title h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .company-table .row,
  .history-table .row {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 16px 0;
  }

  .company-table .label {
    min-width: auto;
    font-size: 13px;
    padding: 9px 14px;
  }

  .company-table .value,
  .history-table .desc,
  .history-table .year {
    font-size: 15px;
    line-height: 1.75;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .hero-copy {
    order: 1 !important;
  }

  .hero-side {
    order: 2 !important;
    min-height: 420px !important;
  }
}
