:root {
  --bg: #f7f4ec;
  --surface: #fffdf9;
  --surface-alt: #efeadf;
  --text: #2f2a24;
  --muted: #5c584e;
  --primary: #ff7333;
  --primary-dark: #d65c24;
  --line: rgba(47, 42, 36, 0.12);
  --primary-hot: #ff8a4c;
  --primary-rose: #ff5a7c;
  --primary-amber: #ffc766;
  --hero-glass: rgba(255, 255, 255, 0.08);
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-sm: 0 12px 28px rgba(47, 42, 36, 0.12);
  --shadow-md: 0 22px 38px rgba(47, 42, 36, 0.16);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: var(--text);
  background: var(--bg);
}
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  background: var(--bg);
}

body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

main { display: block; }

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

a:hover,
a:focus-visible {
  text-decoration: none;
}

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Preloader (reference-like) */
body.preload-lock { overflow: hidden; }
.preloader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background:
  radial-gradient(120% 110% at 10% 30%, rgba(255, 221, 197, 0.4) 0%, rgba(255, 255, 255, 0) 45%),
  radial-gradient(110% 120% at 95% 15%, rgba(184, 221, 219, 0.35) 0%, rgba(255, 255, 255, 0) 45%),
  var(--bg, #f7f4ec);
  transition: opacity .45s ease, visibility .45s ease; }
.preloader.is-hide { opacity: 0; visibility: hidden; }
.preloader__inner { display: grid; gap: 18px; place-items: center; text-align: center; padding: 20px 24px; border-radius: 18px; background: rgba(255,255,255,0.7); border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.preloader__brand { display: grid; gap: 6px; }
.preloader__word { font-family: "Inter", "Noto Sans JP", sans-serif; font-weight: 800; letter-spacing: .22em; font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1; background: linear-gradient(120deg, var(--primary-hot, #ff8a4c), var(--primary-rose, #ff5a7c)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.preloader__sub { font-size: .78rem; letter-spacing: .18em; color: var(--muted, #5c584e); text-transform: uppercase; }
.preloader__meter { position: relative; width: min(420px, 66vw); height: 4px; background: rgba(0,0,0,0.08); border-radius: 99px; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255,255,255,0.45); }
.preloader__bar { width: var(--p, 0%); height: 100%; background:
  linear-gradient(90deg, rgba(255, 115, 51, 0.8), rgba(255, 90, 124, 0.85)),
  repeating-linear-gradient(45deg, rgba(255,255,255,.35) 0 8px, rgba(255,255,255,0) 8px 16px);
  background-size: 100% 100%, 200% 100%;
  animation: preloader-stripe 1.2s linear infinite; border-radius: inherit; }
.preloader__percent { font-size: .78rem; color: var(--muted, #5c584e); letter-spacing: .12em; }
@keyframes preloader-stripe { 0% { background-position: 0 0, 0 0; } 100% { background-position: 0 0, 200% 0; } }
@media (prefers-reduced-motion: reduce) { .preloader__bar { animation: none; } }

/* Sonic-like variant */
.preloader.preloader--sonic { background: #0e0e0e; }
.preloader--sonic .preloader__inner { background: transparent; border: none; box-shadow: none; gap: 16px; }
.preloader--sonic .preloader__brand { display: none; }
.preloader--sonic .preloader__word { display: none; }
.preloader--sonic .preloader__sub { display: none; }
.preloader--sonic .preloader__tagline { color: #fff; letter-spacing: .22em; font-weight: 800; font-size: clamp(.72rem, 1.6vw, .9rem); text-transform: uppercase; opacity: .9; }
.preloader--sonic .preloader__next { color: rgba(255,255,255,0.8); letter-spacing: .18em; text-transform: uppercase; font-size: .9rem; }
.preloader--sonic .preloader__percent { color: #fff; font-size: clamp(.78rem, 2vw, 1rem); font-weight: 800; letter-spacing: .06em; font-variant-numeric: tabular-nums; }
.preloader--sonic .preloader__meter { width: min(520px, 80vw); height: 2px; background: rgba(255,255,255,0.18); }
.preloader--sonic .preloader__bar { background: linear-gradient(90deg, #fff, #bbb), repeating-linear-gradient(45deg, rgba(255,255,255,.35) 0 8px, rgba(255,255,255,0) 8px 16px); opacity: .9; }

/* Circular loader for SONIC variant */
.preloader--sonic .preloader__meter { display: none; }
.preloader--sonic .preloader__circle { width: clamp(50px, 6.5vw, 76px); aspect-ratio: 1; position: relative; display: grid; place-items: center; }
.preloader--sonic .preloader__pie { position: absolute; inset: 0; border-radius: 50%; background:
  conic-gradient(#ffffff var(--deg, 0deg), rgba(255,255,255,0.18) 0);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25)); }
.preloader--sonic .preloader__circle::after { content: ""; position: absolute; inset: 2px; border-radius: 50%; background: #0e0e0e; border: 1px solid rgba(255,255,255,0.22); }
.preloader--sonic .preloader__percent { position: relative; z-index: 1; }

/* Page reveal (subtle open) */
body.preload-stage { transform: scale(.985); opacity: .96; transition: none; }
body.preload-reveal { transform: scale(1); opacity: 1; transition: transform .55s cubic-bezier(.2, .8, .2, 1), opacity .55s ease; }

/* Minimal preloader variant for Recruit (simple & modern) */
.preloader.preloader--minimal { background: #0e0e0e; }
.preloader--minimal .preloader__inner { background: transparent; border: none; box-shadow: none; padding: 0; gap: 10px; }
.preloader--minimal .preloader__spinner { width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.18); border-top-color: #fff; animation: preloader-rotate .9s linear infinite; }
@keyframes preloader-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .preloader--minimal .preloader__spinner { animation-duration: 1.6s; } }

/* Scroll highlight (nav jump feedback) */
.is-scroll-highlight {
  position: relative;
  z-index: 0;
}
.is-scroll-highlight::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 210, 160, 0.72), rgba(255, 210, 160, 0.18) 36%, rgba(255, 210, 160, 0) 68%),
    linear-gradient(140deg, rgba(255, 204, 158, 0.28), rgba(255, 204, 158, 0) 60%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  animation: section-soft-glow 1.1s ease forwards;
}
.is-scroll-highlight > * {
  position: relative;
  z-index: 1;
  animation: section-soft-fade 0.7s ease;
}
.is-scroll-highlight > *:nth-child(2) { animation-delay: .035s; }
.is-scroll-highlight > *:nth-child(3) { animation-delay: .07s; }
.is-scroll-highlight > *:nth-child(4) { animation-delay: .105s; }
.is-scroll-highlight > *:nth-child(5) { animation-delay: .14s; }
.is-scroll-highlight > *:nth-child(6) { animation-delay: .175s; }
.is-scroll-highlight > *:nth-child(n+7) { animation-delay: .21s; }
@keyframes section-soft-glow {
  0% { opacity: 0; transform: scale(0.97); }
  40% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); }
}
@keyframes section-soft-fade {
  0% { opacity: 0.85; }
  100% { opacity: 1; }
}

/* Header (match Hitachinaka/LINOA style) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 240, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.is-floating { box-shadow: 0 12px 40px rgba(47, 42, 36, 0.16); }

.header-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
}

.brand { display: flex; flex-direction: column; gap: 4px; font-family: "Inter", "Noto Sans JP", sans-serif; }
.brand-mark { font-weight: 700; font-size: 1.28rem; letter-spacing: 0.08em; }
.brand-sub { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--muted); }

.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; gap: 24px; margin: 0; padding: 0; list-style: none; font-family: "Inter", "Noto Sans JP", sans-serif; font-size: 0.95rem; }
.primary-nav a { position: relative; padding: 6px 0; display: inline-flex; align-items: center; gap: 6px; }
.primary-nav a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus::after, .primary-nav a.is-active::after { transform: scaleX(1); }
.primary-nav a.is-active { color: var(--primary); font-weight: 600; }

.cta-button {
  margin-left: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1.4rem; border-radius: 999px;
  background: var(--primary); color: #fff; font-weight: 600; font-size: 0.9rem; border: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-button:hover, .cta-button:focus { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, 0.12); background: var(--surface); justify-content: center; align-items: center; gap: 5px; flex-direction: column; padding: 0; }
.nav-toggle-line { width: 22px; height: 2px; background: var(--text); border-radius: 99px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.is-open .nav-toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .primary-nav { position: absolute; inset: calc(100% + 8px) 16px auto; background: rgba(255, 255, 255, 0.96); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 16px; transform: translateY(-10px); opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; }
  .primary-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .primary-nav ul { flex-direction: column; gap: 12px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .cta-button { display: none; }
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.c-container {
  width: min(1080px, 94vw);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
  background: var(--surface);
  color: var(--text);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn--ghost {
  background: transparent;
}

.btn--line {
  background: #06c755;
  border-color: #05a342;
  color: #fff;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--primary-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section-header p {
  margin: 0 auto;
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 88vh;
  padding: 180px 7vw 140px;
  color: #fff;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55);
}

.hero__media video {
  object-position: center;
  pointer-events: none;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 115, 51, 0.48), transparent 55%),
              linear-gradient(120deg, rgba(44, 38, 32, 0.92) 0%, rgba(44, 38, 32, 0.6) 55%, rgba(44, 38, 32, 0.35) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  max-width: 640px;
}

.hero__tag {
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.82;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 780;
  letter-spacing: -0.015em;
}

.hero p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.9;
  opacity: 0.92;
}

.hero__cta-row {
  margin-top: clamp(22px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.hero-link--primary {
  opacity: 1;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.hero-link:hover,
.hero-link:focus-visible {
  opacity: 1;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.hero-link__label {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
}

.hero-link__counter {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.55);
}

.hero-link__icon {
  font-size: 1rem;
}

.hero__link-indicator {
  margin-top: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.hero__link-indicator::before {
  content: "NEXT";
  margin-right: 12px;
  opacity: 0.5;
}

@media (max-width: 720px) {
  .hero__cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.intro {
  padding: 96px 0;
  background: var(--surface);
  clip-path: ellipse(105% 100% at 50% 0%);
}

.intro__wrapper {
  display: grid;
  gap: 36px;
}

.intro__header {
  text-align: left;
}

.intro__header h2 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4.5vw, 2.7rem);
  font-weight: 780;
}

.intro__header p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
}

.intro__columns {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.intro__columns article {
  padding: 0 18px;
  border-left: 1px solid rgba(47, 42, 36, 0.12);
}

.intro__columns article:first-child {
  border-left: none;
  padding-left: 0;
}

.intro__columns h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  font-weight: 700;
}

.intro__columns p {
  margin: 0;
  color: var(--muted);
}

.programs {
  padding: 96px 0 80px;
  background: var(--surface);
}

.programs__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  border-top: 1px solid rgba(47, 42, 36, 0.12);
  padding-top: 36px;
}

.programs__list article {
  display: grid;
  gap: 12px;
  padding: 0 14px;
}

.programs__list h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.programs__list p {
  margin: 0;
  color: var(--muted);
}

.daily {
  padding: 80px 0;
  background: var(--surface-alt);
}

.schedule {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.schedule div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(47, 42, 36, 0.12);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
}

.schedule dt {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.schedule dd {
  margin: 0;
  color: var(--text);
}

.culture {
  padding: 96px 0;
  background:
    linear-gradient(180deg, rgba(247, 238, 224, 0.8), rgba(255, 255, 255, 0)) var(--surface);
}

.culture .container {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  text-align: center;
}

.culture__body p {
  max-width: 620px;
  margin: 0 auto 26px;
  color: var(--muted);
}

.culture__body ul {
  margin: 0 auto 24px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 32px;
  max-width: 760px;
  text-align: left;
}

.culture__body li {
  margin: 0;
  padding-left: 22px;
  position: relative;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.culture__body li:before {
  content: "・";
  position: absolute;
  left: 6px;
  color: #ff8a4c;
  font-size: 1.2em;
  line-height: 1;
}

.culture__quote {
  background: #fff7ec;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(47, 42, 36, 0.12);
  border: 1px solid rgba(47, 42, 36, 0.08);
  max-width: 480px;
  margin: 0 auto;
}

.culture__quote blockquote {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.culture__quote cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.voices {
  padding: 90px 0;
  background: var(--surface);
}

.voices__guides {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.voices__guides article {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  box-shadow: var(--shadow-sm);
  min-height: 200px;
}

.voices__guides h3 {
  margin: 0 0 12px;
}

.voices__guides p {
  margin: 0;
  color: var(--muted);
}

.voices__action {
  margin-top: 30px;
  text-align: center;
}

.story {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f4ec 0%, #fffdf9 50%, #fff 100%);
}

.story__wrapper {
  display: grid;
  gap: 32px;
}

.story__lead {
  text-align: center;
  display: grid;
  gap: 12px;
}

.story__lead-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.story__lead-copy p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--muted);
}

.story__lead-note {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(47, 42, 36, 0.6);
  justify-self: center;
}


.story__gallery {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.story__scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  width: min(1100px, 92vw);
  margin: 0 auto;
  justify-content: center;
}

.story__scroller::-webkit-scrollbar {
  height: 6px;
}

.story__scroller::-webkit-scrollbar-thumb {
  background: rgba(47, 42, 36, 0.25);
  border-radius: 999px;
}

.story-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
}

@media (min-width: 960px) {
  .story__scroller {
    flex-wrap: wrap;
    overflow: visible;
    gap: 26px;
  }

  .story-card {
    flex: 0 1 calc((100% - 52px) / 3);
  }
}

.story-card {
  position: relative;
  padding: 0;
  border-radius: 18px;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0.9;
  min-height: auto;
}

.story-card.is-active {
  opacity: 1;
}

.story-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(47, 42, 36, 0.18);
}

.story-card figure {
  margin: 0;
}

.story__detail {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  max-width: 980px;
  width: 100%;
}

.story__detail-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.story__tag {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: rgba(47, 42, 36, 0.7);
}

.story__detail-link {
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(234, 108, 45, 0.6);
  color: #ea6c2d;
}

.story__detail h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  font-weight: 780;
}

.story__detail-lede {
  margin: 0 0 14px;
  font-weight: 600;
  color: rgba(47, 42, 36, 0.85);
}

.story__detail-summary {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.story__detail-keywords {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  flex-wrap: wrap;
}

.story__detail-keywords li {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  padding: 0;
  border: none;
  background: none;
  text-transform: uppercase;
  color: rgba(47, 42, 36, 0.75);
}

.metrics {
  padding: 90px 0;
  background: var(--surface-alt);
}

.metrics .container {
  text-align: center;
}

.metrics__line {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-items: center;
}

.metrics__value {
  display: block;
  font-size: 2.2rem;
  font-weight: 780;
  color: var(--primary);
}

.metrics__line p {
  margin: 8px 0 0;
  color: var(--muted);
}

.metrics__note {
  margin: 36px 0 0;
  text-align: center;
  color: rgba(47, 42, 36, 0.65);
  font-size: 0.92rem;
}

.faq {
  padding: 96px 0;
  background: var(--surface);
}

.faq__items {
  display: grid;
  gap: 14px;
}

.faq__items details {
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 42, 36, 0.12);
  padding: 18px 22px;
  background: var(--surface-alt);
}

.faq__items summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq__items summary::-webkit-details-marker {
  display: none;
}

.faq__items p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta {
  padding: 100px 0;
  background: radial-gradient(circle at 15% 15%, rgba(255, 240, 225, 0.8), rgba(255, 255, 255, 0)) var(--surface);
}

.cta__content {
  text-align: center;
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  background: var(--surface-alt);
  box-shadow: var(--shadow-md);
}

.cta__content h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.cta__content p {
  margin: 0 auto 28px;
  max-width: 640px;
  color: var(--muted);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.company {
  padding: 92px 0 120px;
  background: var(--surface);
}

.company__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.company__wrapper dl {
  margin: 0;
  display: grid;
  gap: 18px;
}

.company__wrapper dt {
  font-weight: 700;
}

.company__wrapper dd {
  margin: 0;
  color: var(--muted);
}

.story__wrapper,
.intro__wrapper,
.programs__list,
.culture .container,
.voices__guides,
.story__gallery {
  width: 100%;
}

.contact-panel {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.contact-panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

.contact-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 6, 0.65);
  backdrop-filter: blur(12px);
}

.contact-panel__dialog {
  position: relative;
  margin-left: auto;
  margin-right: clamp(16px, 4vw, 56px);
  margin-top: auto;
  margin-bottom: clamp(16px, 4vw, 56px);
  width: min(460px, calc(100vw - 32px));
  background: #fffaf2;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 40px 80px rgba(16, 10, 6, 0.5);
  display: grid;
  gap: 18px;
  transform: translateY(12px);
  transition: transform 0.25s ease;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.contact-panel.is-active .contact-panel__dialog {
  transform: translateY(0);
}

.contact-panel__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  color: rgba(47, 42, 36, 0.5);
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-panel__close:hover,
.contact-panel__close:focus-visible {
  background: rgba(47, 42, 36, 0.08);
  color: rgba(47, 42, 36, 0.8);
}

.contact-panel__form {
  display: grid;
  gap: 14px;
}

.contact-panel__field {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
}

.contact-panel__field span {
  font-weight: 600;
}

.contact-panel__field input,
.contact-panel__field textarea,
.contact-panel__field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(47, 42, 36, 0.15);
  background: #fff;
  font: inherit;
  resize: vertical;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-panel__field input:focus,
.contact-panel__field textarea:focus,
.contact-panel__field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 115, 51, 0.16);
  outline: none;
}

.contact-panel__field--checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.contact-panel__field--checkbox input {
  width: auto;
  padding: 0;
  border-radius: 6px;
  flex: 0 0 auto;
}

.contact-panel__error {
  margin: 0;
  color: #d64545;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-panel__error[hidden] {
  display: none;
}

.contact-panel__form-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: left;
}

.contact-panel__form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-panel__submit {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.contact-panel__submit:hover,
.contact-panel__submit:focus-visible {
  background: var(--primary-dark);
}

.contact-panel__submit[disabled] {
  background: #ffe3d1;
  color: rgba(47, 42, 36, 0.55);
  box-shadow: none;
  border: 1px solid rgba(200, 90, 39, 0.25);
  cursor: not-allowed;
}

.contact-panel__result {
  display: grid;
  gap: 14px;
  text-align: center;
}

.contact-panel__result[hidden] {
  display: none;
}

.contact-panel__result-close {
  justify-content: center;
  margin: 0 auto;
  padding: 12px 32px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

body.contact-panel-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero {
    padding: 140px 6vw 120px;
  }

  .culture .container {
    grid-template-columns: 1fr;
  }

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

  .schedule div {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 120px 6vw 100px;
  }

  .intro__columns article {
    border-left: none;
    border-bottom: 1px solid rgba(47, 42, 36, 0.12);
    padding: 0 0 24px;
  }

  .story__scroller {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .story__detail-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .culture .container {
    grid-template-columns: 1fr;
  }

  .story-card {
    padding: 12px;
  }

  .story__detail {
    padding: 26px;
  }

  .contact-panel__dialog {
    margin: auto 12px 16px;
    width: calc(100vw - 24px);
    padding: 24px;
    max-height: calc(100vh - 24px);
  }
}
