:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef5f3;
  --ink: #111827;
  --muted: #5b6573;
  --line: #dbe3ea;
  --dark: #0b1220;
  --dark-2: #122133;
  --teal: #0f766e;
  --green: #16a34a;
  --blue: #2563eb;
  --amber: #f59e0b;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-ja: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-en: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt" 1;
}

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

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

ul,
ol {
  list-style: none;
}

small {
  color: var(--muted);
  font-size: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 227, 234, 0.8);
  backdrop-filter: blur(18px);
}

.site-header__brand,
.site-header__nav,
.site-header__cta {
  font-family: var(--font-en);
  font-weight: 700;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.site-header__nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.site-header__nav a {
  transition: color 0.2s var(--ease);
}

.site-header__nav a:hover {
  color: var(--ink);
}

.site-header__cta,
.btn,
.entry__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.site-header__cta {
  padding: 0 18px;
  background: #075c59;
  color: var(--white);
  font-size: 13px;
}

.site-header__cta:hover,
.btn:hover,
.entry__cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 81px);
  padding: 96px 32px 86px;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 76%;
  content: "";
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 46%, rgba(255, 255, 255, 0.72) 68%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 290px;
  height: 360px;
  content: "";
  opacity: 0.28;
  background:
    repeating-radial-gradient(ellipse at 0% 100%, transparent 0 13px, rgba(15, 118, 110, 0.48) 14px 15px, transparent 16px 25px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.hero__copy {
  position: relative;
  isolation: isolate;
  max-width: 650px;
}

.hero__copy::before {
  position: absolute;
  inset: -170px -260px -120px -120px;
  z-index: -1;
  content: "";
  background-image: url("/images/hero-text-bg.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% 100%;
  opacity: 0.96;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 56%, rgba(0, 0, 0, 0.5) 78%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 56%, rgba(0, 0, 0, 0.5) 78%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.hero__script {
  display: inline-block;
  margin-bottom: 20px;
  color: #1d8a8b;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 31px;
  line-height: 1;
  transform: rotate(-4deg);
}

.hero__script::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 1px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  max-width: 690px;
  font-size: 56px;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1::after {
  display: block;
  width: min(100%, 360px);
  height: 5px;
  margin-top: 8px;
  border-radius: 999px;
  background: #208f8d;
  content: "";
}

.hero__lead {
  max-width: 610px;
  margin-top: 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.btn {
  min-width: 260px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.btn--primary {
  background: #075c59;
  color: var(--white);
}

.btn--primary:hover {
  background: #064b49;
}

.btn--secondary {
  background: var(--surface);
  border-color: #1f2937;
  color: var(--ink);
}

.btn--secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn::after {
  margin-left: auto;
  padding-left: 18px;
  content: ">";
  font-family: var(--font-en);
}

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

.hero__facts p {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 0 22px;
  border-left: 1px solid rgba(15, 23, 42, 0.24);
}

.hero__facts p:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__facts span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid #208f8d;
  border-radius: 16px 16px 4px 16px;
  color: #075c59;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
}

.hero__facts b {
  font-size: 13px;
  line-height: 1.55;
}

.hero__visual {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 64%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.38) 19%, rgba(255, 255, 255, 0) 39%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(11, 18, 32, 0.02) 62%, rgba(11, 18, 32, 0.22) 100%);
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 52% center;
  opacity: 0.96;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.58) 15%, rgba(0, 0, 0, 1) 33%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.58) 15%, rgba(0, 0, 0, 1) 33%);
}

.hero__place {
  position: absolute;
  right: 9%;
  bottom: 7%;
  z-index: 2;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 42px;
  line-height: 1;
  text-shadow: 0 8px 30px rgba(15, 23, 42, 0.28);
  transform: rotate(-8deg);
}

.hero__place::after {
  display: block;
  width: 110%;
  height: 2px;
  margin-top: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 104px 32px;
}

.section__split,
.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}

.intro {
  grid-template-columns: 1fr;
  gap: 28px;
}

.intro .section__title h2 {
  white-space: nowrap;
}

.section__title h2 {
  font-size: 46px;
  line-height: 1.22;
  font-weight: 800;
}

.section__title--center {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.section__lead,
.intro__body {
  color: #465365;
  font-size: 17px;
  font-weight: 500;
}

.intro__body p + p {
  margin-top: 20px;
}

.intro__logo {
  width: min(100%, 520px);
  margin: 0 auto 6px;
  overflow: hidden;
  border-radius: 8px;
  background: #102a60;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
}

.intro__logo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pill,
.support-card span {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  align-items: stretch;
  background: var(--dark);
  color: var(--white);
}

.opening__image {
  min-height: 560px;
}

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

.opening__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
}

.opening__content .eyebrow {
  color: #60a5fa;
  font-size: 18px;
  line-height: 1.4;
}

.opening__content h2 {
  font-size: 42px;
  line-height: 1.28;
}

.opening__content p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.role-card {
  min-height: 640px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.role-card--dark {
  background: var(--dark-2);
  color: var(--white);
  border-color: var(--dark-2);
}

.role-card__top,
.req-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: #e0f2fe;
  color: #075985;
}

.role-card--dark .pill {
  background: rgba(96, 165, 250, 0.14);
  color: #bfdbfe;
}

.role-card__index {
  color: var(--muted);
  font-family: var(--font-en);
  font-weight: 800;
}

.role-card--dark .role-card__index {
  color: rgba(255, 255, 255, 0.48);
}

.role-card h3 {
  margin-top: 34px;
  font-size: 42px;
  line-height: 1.2;
}

.role-card__lead {
  margin-top: 18px;
  color: #334155;
  font-size: 18px;
  font-weight: 700;
}

.role-card--dark .role-card__lead {
  color: rgba(255, 255, 255, 0.78);
}

.role-card__body {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.role-card--dark .role-card__body {
  border-color: rgba(255, 255, 255, 0.15);
}

.role-card__body h4 {
  margin-bottom: 16px;
  font-size: 15px;
}

.role-card__body li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
}

.role-card__body li + li {
  margin-top: 10px;
}

.role-card__body li::before {
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.role-card--dark .role-card__body li {
  color: rgba(255, 255, 255, 0.76);
}

.role-card--dark .role-card__body li::before {
  background: var(--amber);
}

.day {
  padding-top: 74px;
}

.timeline {
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.timeline li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
}

.timeline li:last-child {
  border-bottom: 0;
}

.timeline time {
  color: var(--teal);
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
}

.timeline span {
  color: #354154;
  font-weight: 600;
}

.note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.life {
  padding: 112px 32px;
  background: var(--surface-soft);
}

.life__content {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: end;
  max-width: var(--container);
  margin: 0 auto 42px;
}

.life__content p {
  color: #3f4d5e;
  font-size: 17px;
  font-weight: 500;
}

.life__gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 460px;
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
}

.life-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
}

.life-card--wide {
  grid-column: span 1;
}

.life-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.life-card:hover img {
  transform: scale(1.035);
}

.life-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0) 30%, rgba(11, 18, 32, 0.8) 100%);
  content: "";
}

.life-card figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: var(--white);
}

.life-card b,
.life-card span {
  display: block;
}

.life-card b {
  font-size: 22px;
}

.life-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.support-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.support-card span {
  color: var(--green);
}

.support-card h3 {
  margin-top: 34px;
  font-size: 25px;
  line-height: 1.35;
}

.support-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.requirements {
  padding-top: 92px;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.req-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.req-card__head {
  cursor: pointer;
  list-style: none;
  min-height: 170px;
  padding: 30px;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.req-card__head::-webkit-details-marker {
  display: none;
}

.req-card__head h3 {
  font-size: 30px;
  line-height: 1.2;
}

.req-card__head p {
  color: var(--muted);
  font-weight: 700;
}

.req-card dl {
  padding: 8px 30px 30px;
}

.req-card dl > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.req-card dl > div:last-child {
  border-bottom: 0;
}

.req-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.req-card dd {
  color: #273244;
  font-size: 14px;
  font-weight: 600;
}

.entry {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  background: var(--dark);
  color: var(--white);
}

.entry__media {
  min-height: 560px;
}

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

.entry__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 72px;
}

.entry__content .eyebrow {
  color: #60a5fa;
}

.entry__content h2 {
  font-size: 48px;
  line-height: 1.18;
}

.entry__content p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.entry__cta {
  align-self: center;
  width: fit-content;
  min-width: 260px;
  margin-top: 34px;
  padding: 0 24px;
  background: var(--white);
  color: var(--dark);
}

.entry__cta:hover {
  background: #d1fae5;
}

.entry__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.entry__channels a {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.form-section {
  padding: 96px 32px 108px;
  background: var(--dark);
  color: var(--white);
}

.form-section__inner {
  width: min(100%, 900px);
  margin: 0 auto;
}

.form-section .eyebrow {
  color: #60a5fa;
}

.form-section .section__title h2 {
  color: var(--white);
}

.form-section__lead {
  max-width: 680px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

/* === Casual interview form === */
.entry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 34px;
  width: 100%;
  max-width: 900px;
}

.entry-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.entry-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  border: 0;
  padding: 0;
  margin: 0;
}

.entry-form__field--radio {
  gap: 10px;
}

.entry-form__field--radio > label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.entry-form__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
}

.entry-form__label em {
  padding: 2px 6px;
  background: rgba(96, 165, 250, 0.18);
  border-radius: 4px;
  color: #93c5fd;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.entry-form input[type="text"],
.entry-form input[type="email"],
.entry-form input[type="tel"],
.entry-form textarea,
.entry-form select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.entry-form textarea {
  resize: vertical;
  min-height: 64px;
  line-height: 1.6;
}

.entry-form input::placeholder,
.entry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.entry-form input:focus,
.entry-form textarea:focus,
.entry-form select:focus {
  outline: none;
  border-color: #60a5fa;
  background: rgba(255, 255, 255, 0.1);
}

.entry-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.6) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.6) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.entry-form select option {
  background: var(--dark-2);
  color: var(--white);
}

.entry-form input[type="radio"] {
  accent-color: #60a5fa;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.entry-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.entry-form__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.entry-form__submit {
  margin-top: 0;
}

@media (min-width: 761px) {
  .entry-form__submit {
    min-width: 420px;
    min-height: 76px;
    padding: 0 48px;
    font-size: 20px;
    letter-spacing: 0.04em;
    border-radius: 10px;
  }
}

.entry-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.entry-form__note {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  text-align: center;
  max-width: 100%;
}

.entry-form__status {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
}

.entry-form__status.is-success {
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}

.entry-form__status.is-error {
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

@media (max-width: 720px) {
  .entry-form__row {
    grid-template-columns: 1fr;
  }
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: #070b13;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer div {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.footer strong {
  color: var(--white);
  font-size: 15px;
}

.thanks-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 81px);
  padding: 72px 32px;
  background:
    radial-gradient(circle at 18% 16%, rgba(15, 118, 110, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
}

.thanks-card {
  width: min(100%, 760px);
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  font-size: 42px;
  line-height: 1.25;
}

.thanks-card p:not(.eyebrow) {
  margin-top: 22px;
  color: #465365;
  font-size: 17px;
  font-weight: 500;
}

.thanks-card .btn {
  display: flex;
  width: fit-content;
  margin: 34px auto 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header__nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero::before {
    width: 84%;
    background:
      linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 46%, rgba(255, 255, 255, 0.54) 73%, rgba(255, 255, 255, 0) 100%);
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero__inner,
  .section__split,
  .intro,
  .life__content {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    gap: 36px;
  }

  .hero__visual {
    width: 70%;
    min-height: 100%;
    opacity: 0.88;
  }

  .hero__visual img {
    min-height: 100%;
    object-position: 60% center;
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.62) 20%, rgba(0, 0, 0, 1) 48%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.62) 20%, rgba(0, 0, 0, 1) 48%);
  }

  .band,
  .entry {
    grid-template-columns: 1fr;
  }

  .opening__image,
  .entry__media {
    min-height: 420px;
  }

  .opening__content,
  .entry__content {
    padding: 64px 32px;
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .life__gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 380px;
  }

  .life-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .hero,
  .section,
  .life {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 32px;
    padding-left: 0;
    background: #ffffff;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    width: 150px;
    height: 220px;
    opacity: 0.18;
  }

  .hero__inner {
    display: block;
    min-height: 0;
    padding-top: 0;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero__copy::before {
    inset: -116px -92px -70px -52px;
    background-size: cover;
    opacity: 0.84;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.46) 78%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.46) 78%, rgba(0, 0, 0, 0) 100%);
  }

  .hero h1 {
    font-size: 39px;
    line-height: 1.28;
  }

  .hero h1::after {
    width: 240px;
    height: 4px;
    margin-top: 6px;
  }

  .hero__script {
    margin-bottom: 12px;
    font-size: 25px;
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.8;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .hero__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .hero__facts p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 0;
    border-left: 0;
    text-align: center;
  }

  .hero__facts span {
    width: 42px;
    height: 42px;
    border-radius: 13px 13px 4px 13px;
    font-size: 7.5px;
  }

  .hero__facts b {
    font-size: 10.5px;
    line-height: 1.45;
  }

  .role-grid,
  .support-grid,
  .req-grid {
    grid-template-columns: 1fr;
  }

  .support-grid {
    gap: 10px;
    margin-top: 26px;
  }

  .support-card {
    min-height: 0;
    padding: 18px 18px 17px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    border-radius: 7px;
  }

  .support-card span {
    font-size: 12px;
    line-height: 1;
  }

  .support-card h3 {
    margin-top: 12px;
    font-size: 23px;
    line-height: 1.22;
  }

  .support-card p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.75;
  }

  .hero__visual {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    margin-bottom: 24px;
    opacity: 1;
  }

  .hero__visual::after {
    background: none;
  }

  .hero__visual img {
    height: 100%;
    min-height: 0;
    object-position: 50% center;
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero__place {
    right: 16px;
    bottom: 16px;
    font-size: 28px;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .intro {
    padding-top: 42px;
  }

  .section__title h2,
  .opening__content h2,
  .entry__content h2 {
    font-size: 34px;
  }

  .intro .section__title h2 {
    white-space: normal;
  }

  .role-card {
    min-height: auto;
    padding: 26px;
  }

  .role-card h3 {
    font-size: 32px;
  }

  .life__gallery {
    display: flex;
    gap: 12px;
    width: calc(100% + 36px);
    max-width: none;
    margin: 0 -18px;
    padding: 0 18px 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-left: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
  }

  .life__gallery::-webkit-scrollbar {
    display: none;
  }

  .life-card,
  .life-card--wide {
    flex: 0 0 min(84vw, 330px);
    height: 300px;
    scroll-snap-align: start;
  }

  .life-card b {
    font-size: 20px;
  }

  .life-card span {
    font-size: 13px;
    line-height: 1.7;
  }

  .timeline li {
    grid-template-columns: 86px 1fr;
    gap: 14px;
    min-height: 82px;
    padding: 0 18px;
  }

  .timeline time {
    font-size: 17px;
  }

  .req-card__head,
  .req-card dl {
    padding-right: 22px;
    padding-left: 22px;
  }

  .req-card__head {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding-right: 76px;
  }

  .req-card__head::after {
    position: absolute;
    top: 22px;
    right: 22px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--teal);
    content: "+";
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease);
  }

  .req-card[open] .req-card__head::after {
    content: "-";
    transform: rotate(180deg);
  }

  .req-card dl {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transition:
      max-height 0.42s var(--ease),
      padding-top 0.42s var(--ease),
      padding-bottom 0.42s var(--ease),
      opacity 0.24s ease-out;
    will-change: max-height, opacity;
  }

  .req-card[open] dl {
    max-height: 1500px;
    padding-top: 8px;
    padding-bottom: 30px;
    opacity: 1;
  }

  .req-card dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer,
  .footer div {
    align-items: flex-start;
    flex-direction: column;
  }

  .thanks-page {
    min-height: calc(100vh - 73px);
    padding: 44px 18px;
  }

  .thanks-card {
    padding: 34px 24px;
  }

  .thanks-card h1 {
    font-size: 32px;
  }

  .thanks-card .btn {
    width: 100%;
  }

  .form-section {
    padding: 72px 18px 80px;
  }

  .form-section__lead {
    text-align: left;
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .req-card dl,
  .req-card__head::after {
    transition: none;
  }
}

@media (max-width: 460px) {
  .hero {
    min-height: 0;
    padding-bottom: 32px;
  }

  .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero__visual {
    min-height: 0;
    height: auto;
  }

  .hero__visual img {
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .opening__image,
  .entry__media {
    min-height: 300px;
  }
}


