/*
Theme Name: YASU GLOBAL
Theme URI: https://yasu-global.com/
Author: Nobuyuki Horiba
Description: Original one-page WordPress theme for YASU GLOBAL.
Version: 1.0.52
Text Domain: yasu-global
*/

:root {
  --yg-bg: #f8f6f2;
  --yg-text: #2c2c2c;
  --yg-accent: #1e3555;
  --yg-muted: #8f8374;
  --yg-line: rgba(44, 44, 44, 0.14);
  --yg-serif: "Shippori Mincho", "Yu Mincho", YuMincho, serif;
  --yg-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --yg-header-h: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--yg-text);
  background: var(--yg-bg);
  font-family: var(--yg-sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  overflow: hidden;
}

.container-wide {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 10px;
  background: var(--yg-muted);
}

.section-title {
  margin: 0 0 24px;
  font-family: var(--yg-serif);
  font-size: clamp(32px, 4vw, 38px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.section-copy {
  max-width: 40rem;
  margin: 0;
  font-size: clamp(15px, 1.2vw, 18px);
}

.site-header {
  position: relative;
  z-index: 30;
  min-height: var(--yg-header-h);
  background: rgba(248, 246, 242, 0.96);
  border-bottom: 1px solid var(--yg-line);
}

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

.site-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 2vw, 38px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.social-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-nav a {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  transition: opacity .25s ease, transform .25s ease;
}

.social-nav a:hover {
  opacity: .62;
  transform: translateY(-1px);
}

.social-nav svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.hero-slider {
  position: relative;
  min-height: calc(100vh - var(--yg-header-h));
  background: #1c1c1c;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.6s ease, visibility 1.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 12, .62) 0%, rgba(5, 8, 12, .18) 48%, rgba(5, 8, 12, .04) 100%),
    linear-gradient(0deg, rgba(5, 8, 12, .18), transparent 45%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--yg-header-h));
  display: flex;
  align-items: center;
  padding-block: 80px;
}

.hero-title {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-family: var(--yg-serif);
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 22px rgba(0,0,0,.24);
}

.hero-control {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  opacity: .8;
}

.hero-control:hover {
  opacity: 1;
}

.hero-control--prev {
  left: 22px;
}

.hero-control--next {
  right: 22px;
}

.hero-control::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin: auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.hero-control--prev::before {
  transform: rotate(-135deg);
}

.hero-control--next::before {
  transform: rotate(45deg);
}

.hero-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

.editorial-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.editorial-section--reverse .editorial-section__visual {
  order: -1;
}

.editorial-section__content {
  display: flex;
  align-items: center;
  padding: clamp(60px, 7vw, 120px);
}

.editorial-section__visual {
  min-height: 520px;
}

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

.message-text {
  font-family: var(--yg-serif);
  font-size: clamp(22px, 2.3vw, 26px);
  line-height: 1.85;
  letter-spacing: .08em;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 14px;
}

.story-link::after {
  content: "→";
}

.experience-detail {
  padding: clamp(88px, 9vw, 120px) 0 clamp(100px, 10vw, 140px);
  background: #f2ede5;
  border-top: 1px solid rgba(44,44,44,.06);
  border-bottom: 1px solid rgba(44,44,44,.06);
}

.experience-detail .section-title,
.how-i-help .section-title {
  margin-bottom: 0;
}

.experience-detail__grid,
.how-i-help__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--yg-line);
  border-bottom: 1px solid var(--yg-line);
}

.experience-detail__item,
.how-i-help__item {
  padding: clamp(44px, 4.5vw, 64px) clamp(28px, 3.5vw, 48px);
}

.experience-detail__item + .experience-detail__item,
.how-i-help__item + .how-i-help__item {
  border-left: 1px solid var(--yg-line);
}

.experience-detail__number,
.how-i-help__number {
  display: block;
  margin-bottom: 28px;
  color: var(--yg-accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
  letter-spacing: .14em;
}

.experience-detail__stat {
  margin: 0 0 22px;
  color: #7c6a57;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1;
  letter-spacing: .03em;
}

.experience-detail__item h3,
.how-i-help__item h3 {
  margin: 0 0 20px;
  color: var(--yg-accent);
  font-family: var(--yg-serif);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .08em;
}

.experience-detail__item h3 {
  font-size: clamp(20px, 2.6vw, 24px);
}

.experience-detail__lead,
.how-i-help__lead {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.9;
}

.experience-detail__meta,
.how-i-help__meta {
  margin: 0;
  color: #7a7167;
  font-size: 13px;
  line-height: 1.9;
}

.how-i-help {
  padding: clamp(88px, 9vw, 120px) 0 clamp(100px, 10vw, 140px);
  background: var(--yg-bg);
}

.how-i-help__grid {
  margin-top: 56px;
}

.contact-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 390px;
}

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

.contact-band__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 6vw, 94px);
}

.contact-band__content h2 {
  margin: 0 0 18px;
  font-family: var(--yg-serif);
  font-size: clamp(32px, 4vw, 38px);
  font-weight: 500;
  line-height: 1.5;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 220px;
  min-height: 52px;
  margin-top: 28px;
  padding: 14px 28px;
  color: #fff;
  background: var(--yg-accent);
  transition: background .25s ease, transform .25s ease;
}

.contact-button:hover {
  background: #152944;
  transform: translateY(-1px);
}

body.is-journey-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.journey-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  overflow: hidden;
  background: var(--yg-bg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .45s ease, visibility .45s ease, transform .45s ease;
}

.journey-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.journey-modal__header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 3vw, 48px);
  color: var(--yg-accent);
  background: rgba(248, 246, 242, .94);
  border-bottom: 1px solid var(--yg-line);
  backdrop-filter: blur(10px);
}

.journey-modal__brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  letter-spacing: .18em;
}

.journey-modal__close {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  padding: 10px 0;
  color: inherit;
  background: transparent;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}

.journey-modal__close-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.journey-modal__close-icon::before,
.journey-modal__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.journey-modal__close-icon::before {
  transform: rotate(45deg);
}

.journey-modal__close-icon::after {
  transform: rotate(-45deg);
}

.journey-modal__body {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-top: 68px;
  scroll-behavior: smooth;
}

.journey-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 68px));
  display: flex;
  align-items: center;
  color: #fff;
  background: #171717;
}

.journey-hero__image,
.journey-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journey-hero__image {
  object-fit: cover;
}

.journey-hero__shade {
  background: linear-gradient(90deg, rgba(7, 9, 11, .78) 0%, rgba(7, 9, 11, .48) 42%, rgba(7, 9, 11, .08) 75%);
}

.journey-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 96px, 1180px);
  margin-inline: auto;
  padding-block: 92px;
}

.journey-hero__label {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.journey-hero h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(60px, 8vw, 112px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .08em;
}

.journey-hero__lead {
  margin: 36px 0 20px;
  font-family: var(--yg-serif);
  font-size: clamp(27px, 3.2vw, 44px);
  line-height: 1.65;
  letter-spacing: .1em;
}

.journey-hero__copy {
  margin: 0;
  font-size: 15px;
  line-height: 2;
}

.journey-chapters {
  width: min(100% - 96px, 1180px);
  margin-inline: auto;
  padding-block: 64px;
}

.journey-chapter {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  min-height: 430px;
  background: #fbfaf7;
}

.journey-chapter:nth-child(even) {
  grid-template-columns: 1.25fr 1fr;
}

.journey-chapter--image-left .journey-chapter__visual {
  order: -1;
}

.journey-chapter__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 86px);
}

.journey-chapter__number {
  margin: 0 0 20px;
  color: var(--yg-accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.journey-chapter__number::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  background: currentColor;
  opacity: .55;
}

.journey-chapter h3 {
  margin: 0 0 24px;
  color: var(--yg-accent);
  font-family: var(--yg-serif);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .08em;
}

.journey-chapter__content > p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 2.1;
}

.journey-chapter__visual {
  min-height: 430px;
}

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

.journey-contact {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  min-height: 430px;
  background: #f2ede5;
}

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

.journey-contact__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vw, 110px);
}

.journey-contact__content > p {
  margin: 0;
  color: var(--yg-accent);
  font-family: var(--yg-serif);
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.55;
  letter-spacing: .08em;
}

.journey-contact__content span {
  display: inline-block;
}

.contact-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  overflow: hidden;
  background: var(--yg-bg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .4s ease, visibility .4s ease, transform .4s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-modal__header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 3vw, 48px);
  color: var(--yg-accent);
  background: rgba(248, 246, 242, .94);
  border-bottom: 1px solid var(--yg-line);
  backdrop-filter: blur(10px);
}

.contact-modal__brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  letter-spacing: .18em;
}

.contact-modal__close {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  padding: 10px 0;
  color: inherit;
  background: transparent;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-modal__close-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.contact-modal__close-icon::before,
.contact-modal__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.contact-modal__close-icon::before {
  transform: rotate(45deg);
}

.contact-modal__close-icon::after {
  transform: rotate(-45deg);
}

.contact-modal__body {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(520px, 1.15fr);
  overflow-y: auto;
  padding-top: 68px;
  overscroll-behavior: contain;
}

.contact-modal__visual {
  position: sticky;
  top: 0;
  height: calc(100vh - 68px);
}

.contact-modal__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.contact-modal__content {
  display: flex;
  justify-content: center;
  padding: clamp(56px, 7vw, 110px);
}

.contact-modal__inner {
  width: min(100%, 680px);
}

.contact-modal__eyebrow {
  margin: 0 0 16px;
  color: var(--yg-muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-modal__title span {
  display: inline-block;
}

.contact-modal__content h2 {
  margin: 0 0 20px;
  color: var(--yg-accent);
  font-family: var(--yg-serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .08em;
}

.contact-modal__intro {
  margin: 0;
}

.contact-modal__form {
  margin-top: 48px;
}

.yg-contact-form__field {
  margin-bottom: 26px;
}

.yg-contact-form__field label {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
}

.yg-contact-form__required,
.yg-contact-form__optional {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  letter-spacing: .08em;
}

.yg-contact-form__required {
  color: #fff;
  background: var(--yg-accent);
  padding: 1px 7px;
}

.yg-contact-form__optional {
  color: var(--yg-muted);
}

.yg-contact-form input[type="text"],
.yg-contact-form input[type="email"],
.yg-contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(44, 44, 44, .35);
  border-radius: 0;
  padding: 13px 4px;
  color: var(--yg-text);
  background: transparent;
  outline: none;
  transition: border-color .2s ease;
}

.yg-contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.yg-contact-form input:focus,
.yg-contact-form textarea:focus {
  border-color: var(--yg-accent);
}

.yg-contact-form__acceptance {
  margin: 34px 0;
  font-size: 13px;
}

.yg-contact-form__acceptance a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.yg-contact-form__submit input[type="submit"] {
  min-width: 200px;
  min-height: 54px;
  border: 0;
  padding: 14px 30px;
  color: #fff;
  background: var(--yg-accent);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.yg-contact-form__submit input[type="submit"]:hover {
  background: #152944;
  transform: translateY(-1px);
}

.yg-contact-form__submit input[type="submit"]:disabled,
.yg-contact-form__submit input[type="submit"][aria-disabled="true"] {
  background: #6f7c8d;
  cursor: wait;
  opacity: .78;
  transform: none;
}

.wpcf7 form .wpcf7-response-output {
  margin: 28px 0 0;
  padding: 14px 18px;
  border-width: 1px;
  font-size: 13px;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
}

.legal-page {
  background: var(--yg-bg);
}

.legal-page__header {
  padding: clamp(72px, 9vw, 128px) 0 clamp(62px, 7vw, 96px);
  border-bottom: 1px solid var(--yg-line);
}

.legal-page__eyebrow {
  margin: 0 0 18px;
  color: var(--yg-muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.legal-page__header h1 {
  margin: 0;
  color: var(--yg-accent);
  font-family: var(--yg-serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .09em;
}

.legal-page__body {
  width: min(100% - 48px, 920px);
  padding-block: clamp(64px, 8vw, 112px) clamp(92px, 11vw, 150px);
}

.legal-page__intro {
  margin: 0 0 clamp(68px, 8vw, 100px);
  font-family: var(--yg-serif);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 2;
}

.legal-page__body section {
  padding: 0 0 54px;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--yg-line);
}

.legal-page__body section:last-child {
  margin-bottom: 0;
}

.legal-page__body h2 {
  margin: 0 0 24px;
  color: var(--yg-accent);
  font-family: var(--yg-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: .06em;
}

.legal-page__body h2 span {
  display: inline-block;
  min-width: 46px;
  margin-right: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  letter-spacing: .12em;
  vertical-align: .2em;
}

.legal-page__body h3 {
  margin: 30px 0 12px;
  color: var(--yg-accent);
  font-family: var(--yg-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .05em;
}

.legal-page__body p,
.legal-page__body li,
.legal-disclosure dd {
  font-size: 15px;
  line-height: 2;
}

.legal-page__body p {
  margin: 0 0 14px;
}

.legal-page__body ul {
  margin: 18px 0 22px;
  padding-left: 1.4em;
}

.legal-page__body a {
  color: var(--yg-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-page--disclosure .legal-page__body {
  width: min(100% - 48px, 1040px);
}

.legal-disclosure {
  margin: 0;
  border-top: 1px solid var(--yg-line);
}

.legal-disclosure__row {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) 1fr;
  gap: 44px;
  padding: 28px 12px;
  border-bottom: 1px solid var(--yg-line);
}

.legal-disclosure dt {
  color: var(--yg-accent);
  font-family: var(--yg-serif);
  font-size: 16px;
  font-weight: 500;
}

.legal-disclosure dd {
  margin: 0;
}

.legal-page__request {
  margin-top: 36px !important;
  color: #625b53;
  font-size: 13px !important;
}

.site-footer {
  color: rgba(255,255,255,.86);
  background: #102641;
  font-size: 12px;
}

.site-footer__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.site-footer__brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  letter-spacing: .14em;
}

.site-footer__links {
  display: flex;
  gap: 24px;
}

@media (max-width: 960px) {
  :root {
    --yg-header-h: 76px;
  }

  .editorial-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .editorial-section--reverse .editorial-section__visual {
    order: 0;
  }

  .editorial-section__visual {
    min-height: 360px;
  }

  .experience-detail__grid,
  .how-i-help__grid {
    grid-template-columns: 1fr;
  }

  .experience-detail__item + .experience-detail__item,
  .how-i-help__item + .how-i-help__item {
    border-left: 0;
    border-top: 1px solid var(--yg-line);
  }

  .contact-band__image {
    min-height: 340px;
  }

  .journey-hero__content,
  .journey-chapters {
    width: min(100% - 48px, 1180px);
  }

  .journey-chapter,
  .journey-chapter:nth-child(even),
  .journey-contact {
    grid-template-columns: 1fr;
  }

  .journey-chapter__visual,
  .journey-chapter--image-left .journey-chapter__visual {
    order: -1;
  }

  .journey-chapter__visual {
    min-height: min(58vw, 520px);
  }

  .journey-contact__visual {
    min-height: 360px;
  }

  .contact-modal__body {
    grid-template-columns: 1fr;
  }

  .contact-modal__visual {
    position: relative;
    height: min(52vw, 460px);
  }
}

@media (max-width: 640px) {
  .container-wide {
    width: min(100% - 28px, 1320px);
  }

  .hero-slide__image {
    object-position: 75% center;
  }

  .site-logo {
    font-size: 20px;
  }

  .social-nav {
    gap: 12px;
  }

  .hero-slider,
  .hero-slide__content {
    min-height: 72vh;
  }

  .hero-slide__content {
    align-items: flex-end;
    padding-bottom: 96px;
  }

  .hero-title {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-control {
    display: none;
  }

  .editorial-section__content {
    padding: 54px 28px 62px;
  }

  .editorial-section__visual {
    min-height: 300px;
  }

  .message-text {
    font-size: 22px;
  }

  .experience-detail,
  .how-i-help {
    padding: 72px 0 84px;
  }

  .experience-detail__grid,
  .how-i-help__grid {
    margin-top: 38px;
  }

  .experience-detail__item,
  .how-i-help__item {
    padding: 42px 6px 48px;
  }

  .experience-detail__item h3 {
    font-size: 20px;
  }

  .how-i-help__item h3 {
    font-size: 30px;
  }

  .contact-band__content {
    padding: 48px 28px 58px;
  }

  .journey-modal__header {
    min-height: 60px;
  }

  .journey-modal__body {
    padding-top: 60px;
  }

  .journey-modal__close > span:first-child {
    display: none;
  }

  .journey-hero {
    min-height: calc(100svh - 60px);
  }

  .journey-hero__image {
    object-position: center;
  }

  .journey-hero__shade {
    background: linear-gradient(90deg, rgba(7, 9, 11, .72), rgba(7, 9, 11, .22)), linear-gradient(0deg, rgba(7, 9, 11, .58), transparent 60%);
  }

  .journey-hero__content,
  .journey-chapters {
    width: 100%;
  }

  .journey-hero__content {
    align-self: flex-end;
    padding: 72px 28px 62px;
  }

  .journey-hero h2 {
    font-size: clamp(52px, 18vw, 76px);
  }

  .journey-hero__lead {
    font-size: 27px;
  }

  .journey-chapters {
    padding: 0;
  }

  .journey-chapter__visual {
    min-height: 68vw;
  }

  .journey-chapter__content {
    padding: 48px 28px 58px;
  }

  .journey-chapter h3 {
    font-size: 28px;
  }

  .journey-contact__visual {
    min-height: 72vw;
  }

  .journey-contact__content {
    padding: 52px 28px 64px;
  }

  .contact-modal__header {
    min-height: 60px;
  }

  .contact-modal__close > span:first-child {
    display: none;
  }

  .contact-modal__body {
    padding-top: 60px;
  }

  .contact-modal__visual {
    height: 58vw;
    min-height: 220px;
  }

  .contact-modal__content {
    padding: 46px 28px 64px;
  }

  .contact-modal__form {
    margin-top: 38px;
  }

  .legal-page__header {
    padding: 60px 0 52px;
  }

  .legal-page__header h1 {
    font-size: 30px;
  }

  .legal-page__body,
  .legal-page--disclosure .legal-page__body {
    width: min(100% - 28px, 1040px);
    padding-block: 58px 90px;
  }

  .legal-page__body section {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .legal-page__body h2 span {
    display: block;
    margin: 0 0 8px;
    font-size: 28px;
  }

  .legal-disclosure__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 4px;
  }

  .site-footer__inner {
    padding-block: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__links {
    flex-wrap: wrap;
    gap: 14px 20px;
  }
}
