@font-face {
  font-family: "Caveat";
  src: url("./assets/fonts/Caveat-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #090909;
  --paper: #eeeeee;
  --paper-deep: #e7e7e7;
  --white: #ffffff;
  --line: #cacaca;
  --tag: #d6d6d6;
  --hero-paper: #faf3e9;
  --daruma-accent: #d51f19;
  --rail-on-video: #ffffff;
  --rail-on-paper: #2b2723;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --shell-pad: 120px;
  --rail-x: 50px;
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "YuMincho",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "Noto Serif JP",
    serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

button,
input,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

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

figure,
h1,
h2,
h3,
p {
  margin: 0;
}

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

.section-shell {
  width: min(100%, 1720px);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}

.section-title {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.55;
  transform: scale(1.1, 0.9);
  transform-origin: left top;
}

.eyebrow {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.parenthesis-link {
  display: inline-flex;
  gap: 0.35em;
  align-items: center;
  font-size: 1.8rem;
  letter-spacing: 0.07em;
}

.parenthesis-link::before {
  content: "（";
}

.parenthesis-link::after {
  content: "）";
}

.parenthesis-link:hover,
.parenthesis-link:focus-visible,
.footer-menu a:hover,
.footer-menu a:focus-visible {
  opacity: 0.5;
}

.site-rail {
  position: relative;
  z-index: 1000;
}

.site-rail__brand,
.site-rail__tools {
  position: fixed;
  z-index: 1000;
  color: var(--rail-on-video);
  transition: color 0.36s ease;
}

body.is-hero-background-visible .site-rail__brand,
body.is-hero-background-visible .site-rail__tools {
  color: var(--rail-on-paper);
}

.site-rail__brand {
  top: 40px;
  right: var(--rail-x);
  display: flex;
  gap: 0.9rem;
  align-items: center;
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
}

.site-rail__brand-mark {
  color: inherit;
  font-size: 1.1rem;
  transition: color 0.36s ease;
}

body.is-hero-background-visible .site-rail__brand-mark {
  color: var(--daruma-accent);
}

body.is-rail-on-dark-card .site-rail__brand,
body.is-rail-on-dark-card .site-rail__tools,
body.is-rail-on-dark-card .site-rail__brand-mark {
  color: var(--rail-on-video);
}

.site-rail__tools {
  top: 40px;
  left: var(--rail-x);
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.rail-button {
  position: relative;
  display: grid;
  width: 26px;
  height: 26px;
  padding: 0;
  place-items: center;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.rail-button svg {
  position: absolute;
  inset: 1px;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.site-language {
  display: grid;
  min-width: 28px;
  min-height: 28px;
  border: 1px solid currentColor;
  place-items: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.site-language:hover,
.site-language:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.rail-icon--close {
  opacity: 0;
  transform: rotate(-18deg);
}

.rail-button.is-active .rail-icon--open {
  opacity: 0;
  transform: rotate(18deg);
}

.rail-button.is-active .rail-icon--close {
  opacity: 1;
  transform: rotate(0);
}

.site-rail__booking {
  position: fixed;
  z-index: 1001;
  top: 56%;
  right: 0;
  display: grid;
  width: 5.6rem;
  height: 21rem;
  padding: 1.2rem 0.8rem;
  border: 4px solid var(--daruma-accent);
  outline: 1px solid rgba(255, 255, 255, 0.92);
  outline-offset: -6px;
  background: var(--daruma-accent);
  color: #fff;
  grid-template-rows: 1fr auto;
  gap: 1.2rem;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 800ms cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 220ms ease,
    transform 800ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-rail__booking-label {
  align-self: center;
}

.site-rail__booking-label .booking-roll__text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
}

.site-rail__booking-icon {
  width: 2.4rem;
  height: 2.4rem;
  background: #322d2d;
  color: #fff8ef;
}

.site-rail__booking:hover,
.site-rail__booking:focus-visible {
  background: #b91b16;
  transform: translate(-3px, -50%);
}

.site-rail__booking:focus-visible {
  outline-width: 2px;
}

body.is-locked .site-rail__brand,
body.is-locked .site-rail__tools {
  color: var(--rail-on-paper);
}

body.is-locked .site-rail__brand-mark {
  color: var(--daruma-accent);
}

body.is-locked .site-rail__booking {
  opacity: 0;
  pointer-events: none;
}

.overlay {
  position: fixed;
  z-index: 700;
  inset: 0;
  overflow-y: auto;
  background: var(--paper-deep);
}

.overlay[hidden] {
  display: none;
}

.overlay.is-visible {
  animation: overlay-in 0.45s ease both;
}

@keyframes overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.overlay__menu-grid {
  display: grid;
  min-height: 100%;
  padding: 80px 120px 60px;
  grid-template-columns: 1.25fr 0.55fr 1fr;
  grid-template-rows: 1fr auto;
  gap: clamp(70px, 9vw, 160px);
}

.overlay__primary,
.overlay__secondary {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}

.overlay__primary {
  grid-column: 3;
  grid-row: 1;
  gap: 4.6rem;
  justify-self: end;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.overlay__secondary {
  grid-column: 1;
  grid-row: 1;
  gap: 3.2rem;
  justify-self: start;
  padding-top: 5rem;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.overlay__primary a,
.overlay__secondary a {
  writing-mode: vertical-rl;
  transition: opacity 0.2s ease;
}

.overlay__primary a:hover,
.overlay__secondary a:hover {
  opacity: 0.45;
}

.overlay__contact {
  grid-column: 1 / 3;
  grid-row: 2;
  align-self: end;
  display: flex;
  gap: 3.4rem;
  align-items: flex-start;
}

.overlay__contact h2 {
  writing-mode: vertical-rl;
  font-size: 2rem;
  letter-spacing: 0.12em;
}

.overlay__contact-card {
  width: min(100%, 680px);
  padding: 36px 40px;
  background: #fff;
}

.overlay__contact-title {
  margin-top: 1.8rem;
  font-size: 2.8rem;
}

.overlay__note {
  max-width: 56rem;
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
}

.outline-link {
  display: grid;
  min-height: 64px;
  margin-top: 2.8rem;
  border: 1px solid currentColor;
  place-items: center;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.outline-link:hover,
.outline-link:focus-visible {
  color: #fff;
  background: #000;
}

.overlay--search {
  background:
    linear-gradient(rgba(231, 231, 231, 0.91), rgba(231, 231, 231, 0.91)),
    url("./assets/sections/gift-craft.webp") center / cover;
}

.search-form {
  font-family:
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
}

.search-form--overlay {
  display: grid;
  width: min(1100px, calc(100% - 280px));
  min-height: 100%;
  margin-inline: auto;
  padding-block: 22vh 12vh;
  align-content: center;
  grid-template-columns: 1.4fr 1fr;
  gap: 34px 40px;
}

.search-field input,
.search-select select {
  width: 100%;
  height: 64px;
  border: 0;
  border-radius: 0;
  color: #111;
  background: #fff;
  appearance: none;
}

.search-field input {
  padding: 0 22px;
}

.search-field input::placeholder {
  color: #aaa;
}

.search-tags {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-tags button {
  padding: 5px 9px;
  background: var(--tag);
  cursor: pointer;
}

.search-select {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 16px;
  align-items: center;
  font-weight: 700;
}

.search-select select {
  padding: 0 22px;
  background-image:
    linear-gradient(45deg, transparent 50%, #000 50%),
    linear-gradient(135deg, #000 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 30px,
    calc(100% - 15px) 30px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.button {
  min-height: 64px;
  padding: 12px 24px;
  cursor: pointer;
}

.button--solid {
  color: #fff;
  background: #000;
}

.button--outline {
  border: 1px solid #000;
  background: transparent;
}

.button:hover,
.button:focus-visible {
  opacity: 0.6;
}

.hero {
  --daruma-w: min(84.9svh, clamp(540px, 52.5vw, 822px));
  --daruma-h: calc(var(--daruma-w) * 956 / 863);
  --circle-size: 120vmax;
  --background-opacity: 0;
  --full-opacity: 1;
  --daruma-film-opacity: 0;
  --decoration-opacity: 0;
  --interface-opacity: 0;
  position: relative;
  width: 100%;
  height: 505vh;
  height: 505svh;
  background: var(--hero-paper);
}

.hero__stage {
  position: sticky;
  top: 0;
  isolation: isolate;
  display: grid;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--hero-paper);
}

.hero__film-full,
.hero__background {
  position: absolute;
  inset: 0;
}

.hero__film-full {
  z-index: 2;
  overflow: hidden;
  background: #1a1714;
  -webkit-mask-image: radial-gradient(
    circle closest-side,
    #000 98%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle closest-side,
    #000 98%,
    transparent 100%
  );
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: var(--circle-size) var(--circle-size);
  mask-size: var(--circle-size) var(--circle-size);
  opacity: var(--full-opacity);
  will-change: opacity, -webkit-mask-size, mask-size;
}

.hero__film-full::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 9, 8, 0.12),
    transparent 34%,
    rgba(11, 9, 8, 0.08)
  );
  content: "";
  pointer-events: none;
}

.hero__film-full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.9) contrast(1.04) brightness(0.88);
  transform: scale(1.025);
}

.hero__background {
  z-index: 0;
  background: #faf3e9;
  opacity: var(--background-opacity);
  will-change: opacity;
}

.hero__landmarks {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.hero__landmark {
  position: absolute;
  inset: 0;
  background-image: url("./assets/background-ivory.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: translate3d(var(--from-x), var(--from-y), 0)
    scale(var(--from-scale, 1.12));
  will-change: opacity, transform;
}

.hero__landmark--fuji {
  --from-x: -27vw;
  --from-y: -18vh;
  --from-scale: 1.18;
  -webkit-mask-image: radial-gradient(
    ellipse 34% 31% at 20% 22%,
    #000 30%,
    rgba(0, 0, 0, 0.94) 56%,
    transparent 84%
  );
  mask-image: radial-gradient(
    ellipse 34% 31% at 20% 22%,
    #000 30%,
    rgba(0, 0, 0, 0.94) 56%,
    transparent 84%
  );
}

.hero__landmark--city {
  --from-x: 27vw;
  --from-y: -10vh;
  --from-scale: 1.16;
  -webkit-mask-image: radial-gradient(
    ellipse 32% 34% at 84% 35%,
    #000 30%,
    rgba(0, 0, 0, 0.94) 56%,
    transparent 84%
  );
  mask-image: radial-gradient(
    ellipse 32% 34% at 84% 35%,
    #000 30%,
    rgba(0, 0, 0, 0.94) 56%,
    transparent 84%
  );
}

.hero__landmark--tradition {
  --from-x: -25vw;
  --from-y: 18vh;
  --from-scale: 1.14;
  -webkit-mask-image: radial-gradient(
    ellipse 36% 31% at 18% 82%,
    #000 30%,
    rgba(0, 0, 0, 0.94) 56%,
    transparent 84%
  );
  mask-image: radial-gradient(
    ellipse 36% 31% at 18% 82%,
    #000 30%,
    rgba(0, 0, 0, 0.94) 56%,
    transparent 84%
  );
}

.hero__landmark--temple {
  --from-x: 23vw;
  --from-y: 20vh;
  --from-scale: 1.13;
  -webkit-mask-image: radial-gradient(
    ellipse 36% 31% at 81% 81%,
    #000 30%,
    rgba(0, 0, 0, 0.94) 56%,
    transparent 84%
  );
  mask-image: radial-gradient(
    ellipse 36% 31% at 81% 81%,
    #000 30%,
    rgba(0, 0, 0, 0.94) 56%,
    transparent 84%
  );
}

.hero__focus {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.daruma {
  position: absolute;
  inset: 0;
  visibility: visible;
  opacity: 1;
  transform: translate3d(var(--shift-x, 0), var(--shift-y, 0), 0);
  backface-visibility: hidden;
  contain: paint;
  will-change: transform;
}

.daruma__film,
.daruma__ink {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.daruma__film {
  overflow: hidden;
  -webkit-mask-image: url("./assets/daruma-mask-clean.png?v=1");
  mask-image: url("./assets/daruma-mask-clean.png?v=1");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: var(--daruma-w) var(--daruma-h);
  mask-size: var(--daruma-w) var(--daruma-h);
  opacity: var(--daruma-film-opacity);
  will-change: opacity;
}

.daruma__film video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.9) contrast(1.04) brightness(0.88);
  transform: scale(1.025);
}

.daruma__ink {
  z-index: 2;
  top: 50%;
  left: 50%;
  width: var(--daruma-w);
  height: var(--daruma-h);
  background: var(--daruma-accent);
  -webkit-mask-image: url("./assets/daruma-overlay-clean.png?v=2");
  mask-image: url("./assets/daruma-overlay-clean.png?v=2");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: var(--decoration-opacity);
  transform: translate(-50%, -50%);
}

.daruma__belly-mark {
  position: absolute;
  z-index: 2;
  top: calc(50% + var(--daruma-h) * 0.23);
  left: 50%;
  width: calc(var(--daruma-w) * 0.27);
  aspect-ratio: 962 / 1024;
  background: var(--daruma-accent);
  -webkit-mask-image: url("./assets/daruma-belly-mark.png?v=1");
  mask-image: url("./assets/daruma-belly-mark.png?v=1");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: var(--decoration-opacity);
  transform: translate(-50%, -50%);
}

.daruma__belly-lines {
  position: absolute;
  z-index: 2;
  top: calc(50% + var(--daruma-h) * 0.23);
  left: 50%;
  width: calc(var(--daruma-w) * 0.72);
  aspect-ratio: 872 / 300;
  background: var(--daruma-accent);
  -webkit-mask-image: url("./assets/daruma-belly-lines.png?v=1");
  mask-image: url("./assets/daruma-belly-lines.png?v=1");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: var(--decoration-opacity);
  transform: translate(-50%, -50%);
}

.hero__statement {
  position: absolute;
  z-index: 4;
  top: clamp(44px, 7svh, 72px);
  left: clamp(96px, 8vw, 150px);
  max-width: 44vw;
  margin: 0;
  color: var(--daruma-accent);
  font-family: "Caveat", cursive;
  font-size: clamp(6.4rem, 6.3vw, 10.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.92;
  opacity: var(--decoration-opacity);
  pointer-events: none;
}

.hero__statement span {
  display: block;
  white-space: nowrap;
}

.film-control {
  position: absolute;
  z-index: 5;
  right: 120px;
  bottom: 40px;
  min-height: 44px;
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  opacity: var(--interface-opacity);
  transition: color 0.2s ease;
}

.film-control:hover,
.film-control:focus-visible {
  color: rgba(23, 20, 16, 0.58);
}

.hero__status {
  position: absolute;
  z-index: 10;
  inset: 0;
  display: grid;
  color: #fff;
  background: transparent;
  place-items: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.22em;
  transition:
    opacity 0.45s ease,
    visibility 0.45s;
}

.hero.is-ready .hero__status {
  visibility: hidden;
  opacity: 0;
}

.gift-section {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(420px, 0.78fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
  margin-top: 160px;
}

.gift-section__image {
  width: calc(100% + var(--shell-pad));
  margin-left: calc(var(--shell-pad) * -1);
}

.gift-section__image img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  object-position: center 42%;
}

.gift-section__copy {
  display: flex;
  min-width: 0;
  height: 430px;
  flex-direction: row-reverse;
  gap: clamp(32px, 3.6vw, 64px);
  align-items: flex-start;
  justify-content: flex-start;
  writing-mode: horizontal-tb;
}

.gift-section__copy h1 {
  height: 100%;
  flex: 0 0 auto;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.55;
  transform: scale(1.1, 0.9);
  transform-origin: right top;
}

.gift-section__copy p {
  width: max-content;
  height: 34rem;
  max-height: none;
  flex: 0 0 auto;
  writing-mode: vertical-rl;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 2;
}

.gift-section__copy .parenthesis-link {
  flex: 0 0 auto;
  align-self: flex-end;
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.story-section {
  margin-top: 240px;
}

.story-heading-shell {
  margin-bottom: 60px;
}

.story-heading {
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink);
}

.story-heading .eyebrow {
  margin-bottom: 12px;
}

.story-stack {
  position: relative;
}

.story-panel {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #ddd;
}

.story-panel:nth-child(1) {
  z-index: 1;
}

.story-panel:nth-child(2) {
  z-index: 2;
}

.story-panel:nth-child(3) {
  z-index: 3;
}

.story-panel:nth-child(4) {
  z-index: 4;
}

.story-panel > img,
.story-panel__media,
.story-panel__media > img {
  width: 100%;
  height: 100%;
}

.story-panel__media {
  display: block;
}

.story-panel > img,
.story-panel__media > img {
  object-fit: cover;
}

.story-panel:nth-child(1) > img {
  object-position: center;
}

.story-panel:nth-child(2) > img {
  object-position: 50% 47%;
}

.story-panel:nth-child(3) > img {
  object-position: center;
}

.story-panel:nth-child(4) > .story-panel__media > img {
  object-position: center;
}

.story-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.story-panel__copy {
  position: absolute;
  z-index: 2;
  top: 26%;
  display: flex;
  box-sizing: border-box;
  max-height: 48vh;
  flex-direction: row-reverse;
  gap: 2.5rem;
  align-items: flex-start;
  writing-mode: horizontal-tb;
  letter-spacing: 0.08em;
  text-shadow:
    0 1px 18px rgba(255, 255, 255, 0.86),
    0 0 2px rgba(255, 255, 255, 0.9);
}

.story-panel__copy--right {
  right: 20%;
}

.story-panel__copy--left {
  left: 20%;
}

.story-panel__label {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.story-panel__copy h3 {
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  transform: scale(1.1, 0.9);
  transform-origin: right top;
}

.story-panel__copy > p:not(.story-panel__index) {
  max-height: 38rem;
  writing-mode: vertical-rl;
  font-size: 1.6rem;
  line-height: 2;
}

.story-panel__index {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  writing-mode: horizontal-tb;
  white-space: nowrap;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
}

.story-panel__copy .parenthesis-link {
  writing-mode: vertical-rl;
}

.story-panel--dark .story-panel__copy {
  color: #fff;
  text-shadow:
    0 1px 18px rgba(0, 0, 0, 0.7),
    0 0 2px rgba(0, 0, 0, 0.7);
}

.story-panel .story-panel__copy--band {
  padding: clamp(1.8rem, 2vw, 2.8rem) clamp(1.4rem, 1.6vw, 2.2rem);
  border: 1px solid rgba(24, 21, 19, 0.12);
  background: rgba(252, 250, 246, 0.94);
  box-shadow: 0 1.2rem 3.8rem rgba(0, 0, 0, 0.12);
  color: #181513;
  text-shadow: none;
}

.activities-section {
  margin-top: clamp(170px, 17vw, 280px);
}

.activities-heading {
  display: grid;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink);
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 8vw, 140px);
  align-items: end;
}

.activities-heading .eyebrow {
  margin-bottom: 12px;
}

.activities-heading__lead {
  max-width: 58rem;
  justify-self: end;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  line-height: 2;
}

.activities-board {
  display: grid;
  margin-top: 80px;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  gap: clamp(54px, 6.5vw, 112px);
  align-items: start;
}

.activities-media {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.34fr);
  gap: 14px;
}

.activities-media figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #d9d4cc;
}

.activities-media__film {
  aspect-ratio: 1.4 / 1;
}

.activities-media__still {
  aspect-ratio: 0.48 / 1;
}

.activities-media video,
.activities-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activities-media__film video {
  object-position: center;
}

.activities-media__still img {
  object-position: 48% center;
}

.activities-media figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.56), transparent);
  content: "";
  pointer-events: none;
}

.activities-media figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  justify-content: space-between;
}

.activities-media__still figcaption {
  flex-direction: column;
  gap: 0.4rem;
}

.activities-schedule {
  min-width: 0;
}

.activities-schedule__label {
  padding-bottom: 24px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.activities-list {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.activities-item {
  min-height: 15rem;
  border-bottom: 1px solid var(--line);
}

.activities-item__link {
  display: grid;
  min-height: inherit;
  padding: 30px 0;
  color: inherit;
  grid-template-columns: 10.5rem minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  text-decoration: none;
  transition:
    padding-left 700ms var(--ease-out),
    color 350ms ease;
}

.activities-item__link[aria-disabled="true"] {
  cursor: default;
}

.activities-item__meta {
  display: grid;
  gap: 1.1rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.activities-item__meta time {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.activities-item__meta span {
  width: fit-content;
  padding: 0.45rem 0.7rem;
  background: var(--daruma-accent);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.activities-item__copy p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.activities-item__copy h3 {
  margin-top: 1.4rem;
  font-size: clamp(2.2rem, 2vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.activities-item__press {
  display: inline-flex;
  margin-top: 2.2rem;
  color: #77716b;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  gap: 0.7rem;
  align-items: center;
  transition: color 350ms ease;
}

.activities-item__press > span {
  transition: transform 700ms var(--ease-out);
}

.activities-schedule__note {
  max-width: 42rem;
  margin-top: 26px;
  color: #686868;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media (hover: hover) {
  .activities-item__link[href]:hover {
    padding-left: 14px;
    color: var(--daruma-accent);
  }

  .activities-item__link[href]:hover .activities-item__press {
    color: var(--daruma-accent);
  }

  .activities-item__link[href]:hover .activities-item__press > span {
    transform: translate(0.25rem, -0.25rem);
  }
}

.information-section {
  margin-top: 240px;
}

.information-heading {
  display: flex;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink);
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.information-heading .eyebrow {
  margin-bottom: 12px;
}

.information-heading__lead {
  width: min(52rem, 44%);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  line-height: 2;
}

.information-venue {
  display: grid;
  margin-top: 80px;
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.72fr);
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.information-venue__visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.information-venue__copy {
  padding-top: 24px;
}

.information-venue__copy h3 {
  margin-top: 0;
  font-size: clamp(2.8rem, 3vw, 4.6rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.information-venue__copy h3 span {
  display: block;
  margin-top: 12px;
  font-size: 0.55em;
}

.information-venue__copy > p:not(.eyebrow) {
  margin-top: 30px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2;
}

.information-venue__details {
  margin: 42px 0 30px;
  border-top: 1px solid var(--line);
}

.information-venue__details > div {
  display: grid;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.information-venue__details dt {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.information-venue__details dd {
  margin: 0;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.information-venue__details a {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.information-venue__details .information-venue__email {
  text-decoration: none;
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  user-select: text;
}

.information-venue__times {
  display: grid;
  gap: 0.2em;
}

.information-venue__copy .parenthesis-link {
  margin-top: 4px;
  font-size: 1.5rem;
}

.information-gallery {
  display: grid;
  height: min(72rem, 44vw);
  min-height: 430px;
  margin-top: 130px;
  grid-template-columns: 0.68fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.information-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.information-gallery__entrance {
  grid-row: 1 / -1;
}

.information-gallery figure:nth-child(2) {
  grid-column: 2 / -1;
}

.information-gallery figure:nth-child(3) {
  grid-column: 2 / -1;
}

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

.information-gallery__entrance img {
  object-position: 20% 42%;
}

.information-booking {
  display: grid;
  margin-top: 120px;
  place-items: center;
}

.information-booking__primary {
  position: relative;
  display: grid;
  overflow: hidden;
  width: min(100%, 52rem);
  min-height: 9.6rem;
  padding: 2rem 4rem;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-size: 1.7rem;
  letter-spacing: 0.14em;
  place-items: center;
  text-align: center;
  transition:
    border-color 800ms cubic-bezier(0.165, 0.84, 0.44, 1),
    color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.information-booking__primary.is-disabled {
  cursor: pointer;
}

.faq-section {
  margin-top: clamp(140px, 14vw, 240px);
}

.faq-heading {
  display: grid;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.45fr);
  gap: clamp(50px, 7vw, 120px);
  align-items: end;
}

.faq-heading .eyebrow {
  margin-bottom: 12px;
}

.faq-heading > p {
  max-width: 46rem;
  justify-self: end;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

.faq-list {
  border-bottom: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  display: grid;
  min-height: 11.6rem;
  padding-block: 3.2rem;
  cursor: pointer;
  list-style: none;
  grid-template-columns: 4rem minmax(0, 1fr) 3.2rem;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}

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

.faq-item__index {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.faq-item__question {
  font-size: clamp(1.7rem, 1.55vw, 2.2rem);
  letter-spacing: 0.06em;
  line-height: 1.7;
  transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item__toggle {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  justify-self: end;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition:
    opacity 500ms cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item__toggle::before {
  transform: translate(-50%, -50%);
}

.faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-item__answer {
  max-width: 78rem;
  margin: 0 5rem 0 calc(4rem + clamp(20px, 3vw, 48px));
  padding-bottom: 4rem;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2;
  animation: faq-answer-in 700ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

@media (hover: hover) {
  .faq-item summary:hover .faq-item__question {
    color: var(--daruma-accent);
  }
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-0.8rem);
  }

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

.information-booking__fill {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--daruma-accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 800ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.information-booking__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.booking-roll__viewport,
.booking-roll__icon {
  display: block;
  overflow: hidden;
}

.booking-roll__text,
[data-hover-roll-arrow] {
  display: block;
  will-change: transform;
}

.booking-roll__icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.32rem;
  background: #322d2d;
  color: #fff8ef;
  place-items: center;
  transition:
    background-color 500ms cubic-bezier(0.165, 0.84, 0.44, 1),
    color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.booking-roll__arrow {
  width: 1.45rem;
  height: 1.45rem;
  background: currentColor;
  -webkit-mask: url("./assets/icons/lucide-arrow-right.svg") center / contain no-repeat;
  mask: url("./assets/icons/lucide-arrow-right.svg") center / contain no-repeat;
}

.information-booking__primary:hover,
.information-booking__primary:focus-visible {
  border-color: var(--daruma-accent);
  color: #fff;
}

.information-booking__primary:hover .information-booking__fill,
.information-booking__primary:focus-visible .information-booking__fill {
  transform: scaleX(1);
  transform-origin: left center;
}

.information-booking__primary:hover .booking-roll__icon,
.information-booking__primary:focus-visible .booking-roll__icon {
  background: #fff8ef;
  color: var(--daruma-accent);
}

.site-footer {
  margin-top: 80px;
  padding-bottom: 60px;
}

.footer-main {
  display: grid;
  padding-block: 80px 64px;
  grid-template-columns:
    minmax(250px, 0.8fr)
    minmax(130px, 0.45fr)
    minmax(0, 1.5fr);
  gap: clamp(56px, 6vw, 110px);
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.footer-brand__mark {
  writing-mode: vertical-rl;
  font-family: Georgia, serif;
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.footer-brand > p:last-child {
  writing-mode: vertical-rl;
  letter-spacing: 0.12em;
}

.footer-menu {
  display: grid;
  gap: 1.6rem;
  align-content: start;
}

.footer-menu a {
  width: fit-content;
  letter-spacing: 0.06em;
  line-height: 1.6;
  transition: opacity 0.2s ease;
}

.footer-contact {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.footer-contact h2 {
  writing-mode: vertical-rl;
  font-size: 2rem;
  letter-spacing: 0.12em;
}

.footer-contact__card {
  padding: 32px;
  background: #fff;
}

.footer-contact__card > p:nth-child(2) {
  margin-top: 1.8rem;
  line-height: 1.8;
}

.footer-journal {
  display: grid;
  padding-block: 36px 40px;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(48px, 6vw, 100px);
}

.footer-journal__heading .eyebrow {
  color: #6f6b66;
}

.footer-journal__heading h2 {
  margin-top: 0.8rem;
}

.footer-journal__heading > p:last-child {
  margin-top: 1.2rem;
  color: #6f6b66;
  font-size: 1.1rem;
  line-height: 1.8;
}

.footer-journal__list {
  border-top: 1px solid var(--ink);
}

.footer-journal__item {
  display: grid;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 2.4rem minmax(0, 1fr) 1.4rem;
  gap: 1rem;
  align-items: center;
  transition:
    padding-inline 0.45s var(--ease-out),
    background-color 0.45s var(--ease-out);
}

.footer-journal__item:hover,
.footer-journal__item:focus-visible {
  padding-inline: 0.8rem;
  background: rgba(255, 255, 255, 0.42);
}

.footer-journal__index {
  color: #89857f;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.footer-journal__item h3 {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.65;
}

.footer-journal__arrow {
  color: #89857f;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  text-align: right;
}

.footer-journal__all {
  display: flex;
  width: fit-content;
  margin-top: 1rem;
  margin-left: auto;
  color: #89857f;
  font-size: 1rem;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
  letter-spacing: 0.06em;
  text-align: right;
  transition: color 0.55s var(--ease-out);
}

.footer-journal__all-arrow {
  display: inline-block;
  color: currentColor;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95em;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-journal__all:hover,
.footer-journal__all:focus-visible {
  color: var(--ink);
}

.footer-journal__all:hover .footer-journal__all-arrow,
.footer-journal__all:focus-visible .footer-journal__all-arrow {
  transform: translateX(0.45rem);
}

.footer-copy {
  margin-top: 32px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-align: right;
}

/* Journal index */

.journal-page {
  background: #f2f0ed;
}

.journal-main {
  overflow: hidden;
}

.journal-hero {
  display: grid;
  min-height: min(82vh, 840px);
  padding-top: clamp(150px, 18vh, 210px);
  padding-bottom: clamp(90px, 12vh, 150px);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(72px, 9vw, 160px);
  align-items: end;
}

.journal-hero__title h1 {
  margin-top: 1.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7.6rem, 11vw, 17rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.journal-hero__intro {
  max-width: 52rem;
  padding-bottom: 1rem;
}

.journal-hero__lead {
  font-size: clamp(3rem, 3.4vw, 5.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.journal-hero__intro > p:last-child {
  max-width: 46rem;
  margin-top: 3.2rem;
  color: #56514c;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2.1;
}

.journal-index {
  padding-top: clamp(90px, 11vw, 160px);
  padding-bottom: clamp(110px, 13vw, 190px);
}

.journal-index__heading {
  display: grid;
  margin-bottom: 7rem;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
}

.journal-index__heading h1 {
  margin-top: 1rem;
  font-size: clamp(3.4rem, 4vw, 5.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.journal-index__heading > p {
  max-width: 54rem;
  color: #6f6b66;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.journal-feature {
  display: grid;
  min-height: 58rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.6fr);
}

.journal-feature__image {
  min-height: 58rem;
  overflow: hidden;
}

.journal-feature__image img,
.journal-row__image img,
.journal-workshop__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-feature__copy {
  display: flex;
  padding: clamp(42px, 5vw, 80px);
  border-left: 1px solid var(--ink);
  flex-direction: column;
  justify-content: space-between;
}

.journal-article__meta {
  display: flex;
  color: #6f6b66;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.13em;
  gap: 1.8rem;
}

.journal-feature__copy h3 {
  margin-top: auto;
  font-size: clamp(3rem, 3.2vw, 4.8rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.55;
}

.journal-feature__copy > p {
  max-width: 43rem;
  margin-top: 3.6rem;
  color: #56514c;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 2;
}

.journal-list {
  border-bottom: 1px solid var(--ink);
}

.journal-row {
  display: grid;
  min-height: 22rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 13rem 25rem minmax(0, 1fr) 9rem;
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
}

.journal-row:last-child {
  border-bottom: 0;
}

.journal-row__image {
  width: 25rem;
  height: 15rem;
  overflow: hidden;
}

.journal-row__copy h3 {
  font-size: clamp(1.9rem, 2vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.65;
}

.journal-row__copy p {
  max-width: 64rem;
  margin-top: 1.8rem;
  color: #6f6b66;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.9;
}

.journal-row__status {
  color: #89857f;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.09em;
  text-align: right;
}

.journal-workshop {
  display: grid;
  min-height: 70rem;
  margin-bottom: 14rem;
  background: #181513;
  color: #fff;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
}

.journal-workshop__image {
  min-height: 70rem;
  overflow: hidden;
}

.journal-workshop__image img {
  opacity: 0.85;
}

.journal-workshop__copy {
  display: flex;
  padding: clamp(52px, 6vw, 96px);
  flex-direction: column;
  justify-content: center;
}

.journal-workshop__copy h2 {
  margin-top: 2.4rem;
  font-size: clamp(3.2rem, 3.8vw, 5.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.journal-workshop__headline-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 1500px) {
  .journal-workshop__headline-line > span {
    display: block;
  }
}

.journal-workshop__copy > p:not(.eyebrow) {
  max-width: 47rem;
  margin-top: 3rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 2;
}

.journal-workshop__button {
  width: min(100%, 45rem);
  margin-top: 4.6rem;
  border-color: #fff;
  background: #fff;
  color: #181513;
}

.journal-page .footer-main {
  border-top: 1px solid var(--line);
}

.journal-page .site-footer {
  margin-top: 0;
}

@media (max-width: 1100px) {
  :root {
    --shell-pad: 72px;
  }

  .overlay__menu-grid {
    padding: 70px 100px 50px;
    grid-template-columns: 1fr 1fr;
  }

  .overlay__primary {
    grid-column: 2;
  }

  .overlay__secondary {
    grid-column: 1;
  }

  .overlay__contact {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .search-form--overlay,
  .search-form--page {
    grid-template-columns: 1fr;
  }

  .search-form--overlay {
    width: min(700px, calc(100% - 160px));
    padding-block: 12vh;
  }

  .information-heading {
    align-items: flex-start;
  }

  .activities-heading {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  }

  .activities-board {
    grid-template-columns: 1fr;
  }

  .activities-media {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.3fr);
  }

  .activities-schedule {
    width: min(100%, 76rem);
    margin-left: auto;
  }

  .information-venue {
    grid-template-columns: 1fr;
  }

  .information-venue__copy {
    width: min(100%, 72rem);
    padding-top: 0;
  }

  .information-gallery {
    height: 62vw;
    min-height: 500px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-menu {
    display: none;
  }

  .journal-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  }

  .journal-feature {
    min-height: 48rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  }

  .journal-feature__image {
    min-height: 48rem;
  }

  .journal-row {
    grid-template-columns: 10rem 20rem minmax(0, 1fr) 8rem;
  }

  .journal-row__image {
    width: 20rem;
    height: 13rem;
  }

  .journal-workshop {
    min-height: 58rem;
    grid-template-columns: 1fr 1fr;
  }

  .journal-workshop__image {
    min-height: 58rem;
  }

}

@media (max-width: 767px) {
  :root {
    --shell-pad: 30px;
    --rail-x: 20px;
  }

  body {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2.4rem;
    transform: none;
  }

  .site-rail__brand {
    top: 20px;
    font-size: 1.3rem;
  }

  .site-rail__brand-mark {
    font-size: 0.8rem;
  }

  .site-rail__tools {
    top: 20px;
    gap: 18px;
  }

  .rail-button,
  .rail-button svg {
    width: 20px;
    height: 20px;
  }

  .site-rail__booking {
    top: auto;
    right: 0;
    bottom: 12.8rem;
    width: 4.6rem;
    height: 13.6rem;
    padding: 0.9rem 0.6rem;
    outline-offset: -5px;
    transform: none;
  }

  .site-rail__booking-label .booking-roll__text {
    font-size: 1.15rem;
    letter-spacing: 0.13em;
  }

  .site-rail__booking-icon {
    width: 2rem;
    height: 2rem;
  }

  .site-rail__booking:hover,
  .site-rail__booking:focus-visible {
    transform: translateX(-4px);
  }

  .overlay__menu-grid {
    display: block;
    padding: 82px 60px 80px;
  }

  .overlay__primary,
  .overlay__secondary {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
  }

  .overlay__primary {
    height: 17rem;
    gap: 2.8rem;
    margin-left: auto;
    font-size: 1.6rem;
  }

  .overlay__secondary {
    height: 18rem;
    gap: 2.4rem;
    margin-top: 5rem;
    padding-top: 0;
    font-size: 1.3rem;
  }

  .overlay__contact {
    display: block;
    margin-top: 6rem;
  }

  .overlay__contact h2 {
    margin-bottom: 2.4rem;
    writing-mode: horizontal-tb;
    font-size: 1.8rem;
  }

  .overlay__contact-card {
    padding: 26px 22px;
  }

  .overlay__contact-title {
    font-size: 2.2rem;
  }

  .outline-link {
    min-height: 54px;
    font-size: 1.4rem;
  }

  .search-form--overlay {
    width: calc(100% - 120px);
    padding-block: 14vh 8vh;
    gap: 22px;
  }

  .search-field input,
  .search-select select {
    height: 48px;
  }

  .search-select {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .search-select select {
    background-position:
      calc(100% - 20px) 22px,
      calc(100% - 15px) 22px;
  }

  .button {
    min-height: 52px;
  }

  .hero {
    --daruma-w: min(88vw, 390px);
    --hero-paper: #fbf4eb;
    height: 460vh;
    height: 460svh;
  }

  .hero__stage {
    padding-top: 60px;
  }

  .hero__background {
    background: #fbf4eb;
  }

  .hero__film-full video {
    object-position: 50% 50%;
  }

  .hero__landmark {
    background-image: url("./assets/background-sp-ivory.png");
    background-position: center;
  }

  .hero__landmark--fuji {
    --from-x: -34vw;
    --from-y: -15vh;
    -webkit-mask-image: radial-gradient(
      ellipse 65% 30% at 28% 16%,
      #000 30%,
      rgba(0, 0, 0, 0.94) 52%,
      transparent 82%
    );
    mask-image: radial-gradient(
      ellipse 65% 30% at 28% 16%,
      #000 30%,
      rgba(0, 0, 0, 0.94) 52%,
      transparent 82%
    );
  }

  .hero__landmark--city {
    --from-x: 36vw;
    --from-y: -8vh;
    -webkit-mask-image: radial-gradient(
      ellipse 58% 31% at 78% 31%,
      #000 28%,
      rgba(0, 0, 0, 0.94) 52%,
      transparent 82%
    );
    mask-image: radial-gradient(
      ellipse 58% 31% at 78% 31%,
      #000 28%,
      rgba(0, 0, 0, 0.94) 52%,
      transparent 82%
    );
  }

  .hero__landmark--tradition {
    --from-x: -35vw;
    --from-y: 16vh;
    -webkit-mask-image: radial-gradient(
      ellipse 64% 32% at 24% 74%,
      #000 28%,
      rgba(0, 0, 0, 0.94) 52%,
      transparent 82%
    );
    mask-image: radial-gradient(
      ellipse 64% 32% at 24% 74%,
      #000 28%,
      rgba(0, 0, 0, 0.94) 52%,
      transparent 82%
    );
  }

  .hero__landmark--temple {
    --from-x: 34vw;
    --from-y: 18vh;
    -webkit-mask-image: radial-gradient(
      ellipse 62% 33% at 76% 83%,
      #000 26%,
      rgba(0, 0, 0, 0.94) 50%,
      transparent 82%
    );
    mask-image: radial-gradient(
      ellipse 62% 33% at 76% 83%,
      #000 26%,
      rgba(0, 0, 0, 0.94) 50%,
      transparent 82%
    );
  }

  .hero__statement {
    top: auto;
    right: 28px;
    bottom: calc(50% + var(--daruma-h) * 0.5 + 24px);
    left: 28px;
    max-width: none;
    font-size: clamp(4.8rem, 15.8vw, 7.2rem);
    letter-spacing: -0.03em;
    line-height: 0.91;
    text-align: center;
  }

  .film-control {
    display: none;
  }

  .gift-section {
    display: block;
    margin-top: 50px;
  }

  .gift-section__image {
    width: calc(100% + var(--shell-pad));
    margin-left: calc(var(--shell-pad) * -1);
  }

  .gift-section__image img {
    aspect-ratio: 1.18 / 1;
    object-position: 55% center;
  }

  .gift-section__copy {
    display: block;
    width: 100%;
    height: auto;
    padding: 25px 0 0;
    writing-mode: horizontal-tb;
  }

  .gift-section__copy h1 {
    height: auto;
    writing-mode: horizontal-tb;
    white-space: normal;
    font-size: 2rem;
    line-height: 1.6;
    transform: none;
  }

  .gift-section__copy p {
    width: auto;
    height: auto;
    margin-top: 1.2rem;
    writing-mode: horizontal-tb;
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .gift-section__copy .parenthesis-link {
    align-self: auto;
    margin-top: 2rem;
    writing-mode: horizontal-tb;
    white-space: normal;
    font-size: 1.5rem;
  }

  .story-section {
    margin-top: 120px;
  }

  .story-heading-shell {
    margin-bottom: 40px;
  }

  .story-heading {
    padding-bottom: 34px;
  }

  .story-panel__copy {
    top: 19%;
    max-height: 60vh;
    gap: 1.6rem;
  }

  .story-panel__copy--left {
    left: 19%;
  }

  .story-panel__copy--right {
    right: 19%;
  }

  .story-panel__copy h3 {
    font-size: 2.6rem;
  }

  .story-panel__copy > p:not(.story-panel__index) {
    max-height: 48rem;
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .story-panel__copy .parenthesis-link {
    font-size: 1.4rem;
  }

  .story-panel:nth-child(1) > img {
    object-position: center;
  }

  .story-panel:nth-child(2) > img {
    object-position: 44% center;
  }

  .story-panel:nth-child(3) > img {
    object-position: 12% center;
  }

  .story-panel:nth-child(4) > .story-panel__media > img {
    object-position: center;
  }

  #story-take-home::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(
      to bottom,
      #1c0b06 0%,
      #32150e 46%,
      #5c2e20 79%,
      #8c5038 100%
    );
    content: "";
  }

  #story-take-home > .story-panel__media {
    position: absolute;
    z-index: 1;
    top: 9svh;
    left: 0;
    width: 100%;
    height: 82svh;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0,
      #000 8%,
      #000 92%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0,
      #000 8%,
      #000 92%,
      transparent 100%
    );
  }

  #story-take-home::after {
    z-index: 2;
  }

  #story-take-home > .story-panel__copy {
    z-index: 3;
  }

  .activities-heading,
  .information-heading,
  .faq-heading {
    display: block;
    padding-bottom: 34px;
  }

  .activities-heading__lead,
  .information-heading__lead,
  .faq-heading > p {
    width: 100%;
    max-width: none;
    margin-top: 28px;
    justify-self: stretch;
    font-size: 1.5rem;
    line-height: 1.9;
  }

  .activities-section {
    margin-top: 120px;
  }

  .activities-board {
    margin-top: 42px;
    gap: 54px;
  }

  .activities-media {
    width: calc(100% + var(--shell-pad) * 2);
    margin-left: calc(var(--shell-pad) * -1);
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .activities-media__film {
    aspect-ratio: 0.92 / 1;
  }

  .activities-media__film video {
    object-position: center;
  }

  .activities-media__still {
    display: none;
  }

  .activities-media figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .activities-schedule__label {
    padding-bottom: 18px;
  }

  .activities-item {
    min-height: 0;
  }

  .activities-item__link {
    padding: 24px 0 26px;
    grid-template-columns: 8.2rem minmax(0, 1fr);
    gap: 18px;
  }

  .activities-item__meta time {
    font-size: 1.3rem;
  }

  .activities-item__copy h3 {
    margin-top: 1rem;
    font-size: 2.2rem;
  }

  .activities-item__press {
    margin-top: 1.6rem;
  }

  .activities-schedule__note {
    margin-top: 22px;
  }

  .information-section {
    margin-top: 120px;
  }

  .information-heading {
    padding-top: 52px;
  }

  .information-venue {
    margin-top: 42px;
    gap: 38px;
  }

  .information-venue__visual {
    width: calc(100% + var(--shell-pad) * 2);
    margin-left: calc(var(--shell-pad) * -1);
  }

  .information-venue__copy h3 {
    font-size: 2.8rem;
  }

  .information-venue__copy > p:not(.eyebrow) {
    margin-top: 24px;
    font-size: 1.4rem;
  }

  .information-venue__details {
    margin-top: 30px;
  }

  .information-venue__details > div {
    grid-template-columns: 6.8rem minmax(0, 1fr);
    gap: 14px;
  }

  .information-gallery {
    height: 118vw;
    min-height: 0;
    margin-top: 86px;
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .information-gallery figure:nth-child(2),
  .information-gallery figure:nth-child(3) {
    grid-column: 2;
  }

  .information-booking {
    margin-top: 72px;
  }

  .information-booking__primary {
    min-height: 7.2rem;
    padding: 1.6rem 2rem;
    font-size: 1.5rem;
  }

  .information-booking__content {
    gap: 1.2rem;
  }

  .faq-section {
    margin-top: 110px;
  }

  .faq-item summary {
    min-height: 0;
    padding-block: 2.4rem;
    grid-template-columns: 2.4rem minmax(0, 1fr) 2.4rem;
    gap: 12px;
  }

  .faq-item__question {
    font-size: 1.55rem;
    line-height: 1.65;
  }

  .faq-item__toggle {
    width: 2rem;
    height: 2rem;
  }

  .faq-item__answer {
    margin: 0 2.8rem 0 3.6rem;
    padding-bottom: 2.8rem;
    font-size: 1.35rem;
    line-height: 1.9;
  }

  .booking-roll__icon {
    width: 2.4rem;
    height: 2.4rem;
  }

  .search-form--page {
    padding-block: 50px;
    gap: 22px;
  }

  .site-footer {
    margin-top: 80px;
    padding-bottom: 36px;
  }

  .footer-main {
    display: block;
    padding-block: 60px 40px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-menu {
    margin-top: 48px;
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 0;
  }

  .footer-menu a {
    width: auto;
    padding-block: 16px;
    border-bottom: 1px solid var(--line);
  }

  .footer-contact {
    display: block;
    margin-top: 60px;
  }

  .footer-contact h2 {
    margin-bottom: 2.4rem;
    writing-mode: horizontal-tb;
    font-size: 1.8rem;
  }

  .footer-contact__card {
    padding: 26px 22px;
  }

  .footer-journal {
    display: block;
    padding-block: 32px;
  }

  .footer-journal__heading > p:last-child {
    margin-top: 0.8rem;
  }

  .footer-journal__content {
    margin-top: 24px;
  }

  .footer-journal__item {
    min-height: 70px;
    grid-template-columns: 1.8rem minmax(0, 1fr) 1rem;
    gap: 0.7rem;
  }

  .footer-journal__item h3 {
    font-size: 1.4rem;
  }

  .footer-journal__all {
    margin-top: 1.4rem;
    margin-left: auto;
    padding-right: 0.15rem;
    text-align: right;
  }

  .footer-copy {
    margin-top: 28px;
    text-align: center;
  }

  .journal-hero {
    display: block;
    min-height: 100svh;
    padding-top: 130px;
    padding-bottom: 78px;
  }

  .journal-hero__title h1 {
    margin-top: 1.8rem;
    font-size: clamp(5.8rem, 20vw, 8.2rem);
  }

  .journal-hero__intro {
    margin-top: 14rem;
    padding: 0;
  }

  .journal-hero__lead {
    font-size: 3rem;
  }

  .journal-hero__intro > p:last-child {
    margin-top: 2.4rem;
    font-size: 1.3rem;
    line-height: 2;
  }

  .journal-index {
    padding-top: 88px;
    padding-bottom: 110px;
  }

  .journal-index__heading {
    display: block;
    margin-bottom: 4.8rem;
  }

  .journal-index__heading h1 {
    font-size: 3rem;
  }

  .journal-index__heading > p {
    margin-top: 2.4rem;
  }

  .journal-feature {
    display: block;
    min-height: 0;
  }

  .journal-feature__image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .journal-feature__copy {
    min-height: 38rem;
    padding: 3rem 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .journal-feature__copy h3 {
    margin-top: auto;
    font-size: 2.6rem;
  }

  .journal-feature__copy > p {
    margin-top: 2.4rem;
    font-size: 1.3rem;
  }

  .journal-list {
    padding-top: 1.6rem;
  }

  .journal-row {
    display: grid;
    min-height: 0;
    padding-block: 3.2rem;
    grid-template-columns: minmax(0, 1fr) 8rem;
    gap: 2.4rem 1.8rem;
  }

  .journal-row .journal-article__meta {
    grid-column: 1;
    grid-row: 1;
  }

  .journal-row__image {
    width: 8rem;
    height: 8rem;
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .journal-row__copy {
    grid-column: 1;
    grid-row: 2;
  }

  .journal-row__copy h3 {
    font-size: 1.75rem;
    line-height: 1.7;
  }

  .journal-row__copy p {
    display: none;
  }

  .journal-row__status {
    grid-column: 1;
    grid-row: 3;
    text-align: left;
  }

  .journal-workshop {
    display: block;
    min-height: 0;
    margin-bottom: 9rem;
  }

  .journal-workshop__image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .journal-workshop__copy {
    padding: 4.2rem 2.6rem 4.8rem;
  }

  .journal-workshop__copy h2 {
    font-size: 3rem;
  }

  .journal-workshop__headline-line--second > span {
    display: inline;
  }

  .journal-workshop__copy > p:not(.eyebrow) {
    font-size: 1.3rem;
  }

  .journal-workshop__button {
    margin-top: 3.6rem;
  }
}

@media (max-width: 380px) {
  .hero {
    --daruma-w: min(91vw, 350px);
  }

  .search-form--overlay {
    width: calc(100% - 100px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .hero {
    height: 100vh;
    height: 100svh;
  }

  .hero__stage {
    position: relative;
  }

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

  .hero__film-full {
    display: none;
  }

  .hero__landmarks {
    display: block;
  }

  .hero__landmark {
    opacity: 1 !important;
    transform: none !important;
  }

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

  .daruma__ink,
  .daruma__belly-lines,
  .daruma__belly-mark,
  .hero__statement,
  .film-control {
    opacity: 1;
  }

  .story-panel {
    position: relative;
  }
}

html[lang="en"] .overlay__primary,
html[lang="en"] .overlay__secondary {
  flex-direction: column;
  gap: 2.2rem;
}

html[lang="en"] .overlay__primary a,
html[lang="en"] .overlay__secondary a,
html[lang="en"] .overlay__contact h2 {
  writing-mode: horizontal-tb;
}

html[lang="en"] .overlay__primary {
  font-size: clamp(2.8rem, 4vw, 5.4rem);
  line-height: 1.1;
}

html[lang="en"] .overlay__secondary {
  padding-top: 0;
  font-size: 1.5rem;
}

html[lang="en"] .gift-section__copy {
  height: auto;
  flex-direction: column;
  gap: 2.8rem;
}

html[lang="en"] .gift-section__copy h1 {
  width: min(100%, 62rem);
  height: auto;
  writing-mode: horizontal-tb;
  white-space: normal;
  font-size: clamp(3.8rem, 4.6vw, 7rem);
  letter-spacing: 0.025em;
  line-height: 1.12;
  transform: none;
}

html[lang="en"] .gift-section__copy p {
  width: min(100%, 52rem);
  height: auto;
  writing-mode: horizontal-tb;
  letter-spacing: 0.025em;
  line-height: 1.85;
}

html[lang="en"] .story-panel__copy {
  width: min(32rem, calc(100% - 4rem));
  max-height: none;
  flex-direction: column;
  gap: 1.4rem;
}

html[lang="en"] .story-panel__label {
  align-items: flex-start;
}

html[lang="en"] .story-panel__copy h3,
html[lang="en"] .story-panel__copy > p:not(.story-panel__index) {
  max-height: none;
  writing-mode: horizontal-tb;
}

html[lang="en"] .story-panel__copy h3 {
  white-space: normal;
  letter-spacing: 0.04em;
  line-height: 1.1;
  transform: none;
}

html[lang="en"] .story-panel__copy > p:not(.story-panel__index) {
  line-height: 1.65;
}

html[lang="en"] .story-panel__index {
  text-align: left;
}

html[lang="en"] .footer-brand {
  display: block;
}

html[lang="en"] .footer-brand > p:last-child,
html[lang="en"] .footer-contact h2 {
  margin-top: 2.4rem;
  writing-mode: horizontal-tb;
}

html[lang="en"] .journal-feature__copy h3,
html[lang="en"] .journal-row__copy h3 {
  letter-spacing: 0.025em;
  line-height: 1.35;
}

html[lang="en"] .journal-row__status {
  line-height: 1.35;
}

html[lang="en"] .journal-workshop__headline-line {
  white-space: normal;
}

html[lang="en"] .journal-workshop__headline-line > span {
  display: inline;
}

@media (min-width: 1101px) {
  html[lang="en"] .journal-feature {
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  }
}

@media (min-width: 768px) {
  html[lang="en"] #story-pray > .story-panel__copy {
    top: 23%;
    right: auto;
    left: 50%;
  }
}

@media (max-width: 767px) {
  .site-language {
    min-width: 24px;
    min-height: 24px;
    font-size: 0.8rem;
  }

  html[lang="en"] .overlay__primary,
  html[lang="en"] .overlay__secondary {
    height: auto;
    margin-left: 0;
  }

  html[lang="en"] .overlay__secondary {
    margin-top: 4rem;
  }

  html[lang="en"] .gift-section__copy {
    gap: 2rem;
  }

  html[lang="en"] .gift-section__copy h1 {
    font-size: clamp(3.2rem, 10vw, 4.8rem);
  }

  html[lang="en"] .story-panel__copy {
    width: min(28rem, calc(100% - 3.6rem));
  }

  html[lang="en"] #story-know > .story-panel__copy {
    top: 38%;
  }

  html[lang="en"] #story-paint > .story-panel__copy {
    top: 55%;
    right: auto;
    left: 9%;
  }

  html[lang="en"] #story-take-home > .story-panel__copy {
    top: 50%;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  html[lang="en"] .footer-brand > p:last-child,
  html[lang="en"] .footer-contact h2 {
    margin-top: 0;
  }
}
